From 1346037ba58d650ffea204f991d405dd61cd1eed Mon Sep 17 00:00:00 2001 From: tracicot Date: Sat, 8 Feb 2014 12:08:24 -0700 Subject: [PATCH] Correct typos --- docs/topics/exporters.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/exporters.rst b/docs/topics/exporters.rst index ba5635c7b..9353448f2 100644 --- a/docs/topics/exporters.rst +++ b/docs/topics/exporters.rst @@ -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::