Skip to content

Commit 58cc902

Browse files
authored
Merge pull request #159 from samar-hassan/patch-1
Update incorrect spelling in docs
2 parents fd453ba + ef81f63 commit 58cc902

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/intro/loading-and-saving-data.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
Loading and saving data
33
#######################
44

5-
Saving and loaded of resources is handled by codecs for each format.
5+
Saving and loading of resources is handled by codecs for each format.
66

77
JSON data
88
=========
99

1010
JSON data is loaded and saved using the :py:mod:`odin.codecs.json_codec` module. This module exposes an API that is very
11-
similar to Pythons built in :py:mod:`json` module.
11+
similar to Python's built in :py:mod:`json` module.
1212

1313
Using the Book and Author resources presented in the :doc:`creating-resources` section::
1414

src/odin/codecs/json_codec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def default(self, o):
5252

5353
def load(fp, resource=None, full_clean=True, default_to_not_supplied=False):
5454
"""
55-
Load a from a JSON encoded file.
55+
Load from a JSON encoded file.
5656
5757
See :py:meth:`loads` for more details of the loading operation.
5858

0 commit comments

Comments
 (0)