summaryrefslogtreecommitdiff
path: root/docutils/__init__.py
diff options
context:
space:
mode:
authorgoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-04-13 03:00:21 +0000
committergoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-04-13 03:00:21 +0000
commit057d8db9a70e7065283f5ee1a181c37f087dd518 (patch)
treeef8500b133965d74677e754ab43963152c2ae9ae /docutils/__init__.py
parenta0aa463fcfdcddc03c692c145fa8e67f13c4e4a8 (diff)
downloaddocutils-057d8db9a70e7065283f5ee1a181c37f087dd518.tar.gz
docstring correction
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4507 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/__init__.py')
-rw-r--r--docutils/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/docutils/__init__.py b/docutils/__init__.py
index 167becf45..b267f53cc 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.'''