diff options
| author | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-03-01 18:06:52 +0000 |
|---|---|---|
| committer | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-03-01 18:06:52 +0000 |
| commit | 28fc6c375932745e5458182e8afe7cd8c5e94750 (patch) | |
| tree | c08236dc77739b7142809e50d04f7c722171e038 | |
| parent | 2577f11e289e4d3204e2515102df2bf92409b034 (diff) | |
| download | docutils-28fc6c375932745e5458182e8afe7cd8c5e94750.tar.gz | |
fixed doc-string -- the reader does not apply transforms
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4974 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
| -rw-r--r-- | docutils/readers/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docutils/readers/__init__.py b/docutils/readers/__init__.py index 18c6152ad..74db893f9 100644 --- a/docutils/readers/__init__.py +++ b/docutils/readers/__init__.py @@ -20,8 +20,8 @@ class Reader(Component): Each reader module or package must export a subclass also called 'Reader'. - The three steps of a Reader's responsibility are defined: `scan()`, - `parse()`, and `transform()`. Call `read()` to process a document. + The two steps of a Reader's responsibility are `scan()` and + `parse()`. Call `read()` to process a document. """ component_type = 'reader' |
