Skip to content

Commit 4cf80a9

Browse files
authored
Update pygmt/helpers/utils.py
1 parent 10a7333 commit 4cf80a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygmt/helpers/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def data_kind(
277277
'matrix'
278278
>>> data_kind(data=[[1, 2, 3], [4, 5, 6]]) # sequence of sequences
279279
'matrix'
280-
>>> data_kind(data={"x": [1, 2, 3], "y": [4, 5, 6]})
280+
>>> data_kind(data={"x": [1, 2, 3], "y": [4, 5, 6]}) # dictionary
281281
'matrix'
282282
>>> data_kind(data=pd.DataFrame({"x": [1, 2, 3], "y": [4, 5, 6]})) # pd.DataFrame
283283
'matrix'

0 commit comments

Comments
 (0)