summaryrefslogtreecommitdiff
path: root/docutils
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-06-05 20:25:57 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-06-05 20:25:57 +0000
commitfd08e71e4c9375293bbbfee3a65b1cb78254cfbd (patch)
tree0aea1f016084a39da2b984cc3ff1b4fbd95459a7 /docutils
parent20ed4c16caeda968e418970a7cb4dae0c6e4bf53 (diff)
downloaddocutils-fd08e71e4c9375293bbbfee3a65b1cb78254cfbd.tar.gz
--- MERGE: merged r4507 to maintenance branch; original log message:
docstring correction git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/docutils-0.4@4613 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils')
-rw-r--r--docutils/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/docutils/__init__.py b/docutils/__init__.py
index 076dbc0ae..64e27a788 100644
--- a/docutils/__init__.py
+++ b/docutils/__init__.py
@@ -153,9 +153,10 @@ class TransformSpec:
unknown_reference_resolvers = ()
"""List of functions to try to resolve unknown references. Unknown
references have a 'refname' attribute which doesn't correspond to any
- target in the document. Called when FinalCheckVisitor is unable to find a
- correct target. The list should contain functions which will try to
- resolve unknown references, with the following signature::
+ target in the document. Called when the transforms in
+ `docutils.tranforms.references` are unable to find a correct target. The
+ list should contain functions which will try to resolve unknown
+ references, with the following signature::
def reference_resolver(node):
'''Returns boolean: true if resolved, false if not.'''