Skip to content

Commit 8572a28

Browse files
authored
Merge pull request #2560 from mfatihy70/patch-1
Fixed 2 typos on docs
2 parents 3264094 + 93d3097 commit 8572a28

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

changes/2560.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A typo in a Table code example was corrected.

docs/reference/api/widgets/table.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ to control the display order of columns independent of the storage of that data.
8282
headings=["Name", "Age"],
8383
data=[
8484
{"name": "Arthur Dent", "age": 42, "planet": "Earth"},
85-
{"name", "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
85+
{"name": "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
8686
{"name": "Tricia McMillan", "age": 38, "planet": "Earth"},
8787
]
8888
)
@@ -106,7 +106,7 @@ header, but internally, the attribute "character" will be used:
106106
accessors={"Name", 'character'},
107107
data=[
108108
{"character": "Arthur Dent", "age": 42, "planet": "Earth"},
109-
{"character", "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
109+
{"character": "Ford Prefect", "age": 37, "planet": "Betelgeuse Five"},
110110
{"name": "Tricia McMillan", "age": 38, "planet": "Earth"},
111111
]
112112
)

0 commit comments

Comments
 (0)