aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py2
-rw-r--r--doc/hacking.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index a115ce4..8b3fcfa 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -75,7 +75,7 @@ exclude_trees = ['.build']
# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
-# If true, '()' will be appended to :func: etc. cross-reference text.
+# If true, '()' will be appended to :py:func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
diff --git a/doc/hacking.txt b/doc/hacking.txt
index 941dfde..2684597 100644
--- a/doc/hacking.txt
+++ b/doc/hacking.txt
@@ -72,7 +72,7 @@ execution + childrens' times)::
$ python -c "import pstats; p=pstats.Stats('profile'); p.sort_stats('cumulative').print_stats(20)"
If you want to find out who's calling your expensive function
-(e.g. :func:`libbe.util.subproc.invoke`), try::
+(e.g. :py:func:`libbe.util.subproc.invoke`), try::
$ python -c "import pstats; p=pstats.Stats('profile'); p.sort_stats('cumulative').print_callers(20)"