Merge pull request #587 from tracicot/patch-1

Correct typos
This commit is contained in:
Pablo Hoffman 2014-02-10 05:41:36 -08:00
commit 5925f34e9b
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ default exports), continue reading below.
In order to use an Item Exporter, you must instantiate it with its required
args. Each Item Exporter requires different arguments, so check each exporter
documentation to be sure, in :ref:`topics-exporters-reference`. After you have
instantiated you exporter, you have to:
instantiated your exporter, you have to:
1. call the method :meth:`~BaseItemExporter.start_exporting` in order to
signal the beginning of the exporting process
@ -109,10 +109,10 @@ Example::
2. Overriding the serialize_field() method
------------------------------------------
You can also override the :meth:`~BaseItemExporter.serialize` method to
You can also override the :meth:`~BaseItemExporter.serialize_field()` method to
customize how your field value will be exported.
Make sure you call the base class :meth:`~BaseItemExporter.serialize` method
Make sure you call the base class :meth:`~BaseItemExporter.serialize_field()` method
after your custom code.
Example::