summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2017-08-28 01:14:36 -0400
committerGitHub <noreply@github.com>2017-08-28 01:14:36 -0400
commit69edb9def37be7f38a4fed6d6bf10a618eaec8e3 (patch)
tree0adeec19396ae7378a39dcbf901411080ebe9525
parentec54918f4a7303eba65e7575be52befed9c205c7 (diff)
downloadtablib-69edb9def37be7f38a4fed6d6bf10a618eaec8e3.tar.gz
Update index.rst
-rw-r--r--docs/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst
index fb6db95..90289e2 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -34,7 +34,7 @@ Tablib is an :ref:`MIT Licensed <mit>` format-agnostic tabular dataset library,
>>> print(data.export('json'))
[{"Last Name": "Reitz", "First Name": "Kenneth", "Age": 22}, {"Last Name": "Monke", "First Name": "Bessie", "Age": 21}]
- >>> print(data.yaml)
+ >>> print(data.export('yaml'))
- {Age: 22, First Name: Kenneth, Last Name: Reitz}
- {Age: 21, First Name: Bessie, Last Name: Monke}