We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3264094 + 93d3097 commit 8572a28Copy full SHA for 8572a28
changes/2560.misc.rst
@@ -0,0 +1 @@
1
+A typo in a Table code example was corrected.
docs/reference/api/widgets/table.rst
@@ -82,7 +82,7 @@ to control the display order of columns independent of the storage of that data.
82
headings=["Name", "Age"],
83
data=[
84
{"name": "Arthur Dent", "age": 42, "planet": "Earth"},
85
- {"name", "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
+ {"name": "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
86
{"name": "Tricia McMillan", "age": 38, "planet": "Earth"},
87
]
88
)
@@ -106,7 +106,7 @@ header, but internally, the attribute "character" will be used:
106
accessors={"Name", 'character'},
107
108
{"character": "Arthur Dent", "age": 42, "planet": "Earth"},
109
- {"character", "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
+ {"character": "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
110
111
112
0 commit comments