From 4e6eff568853451d9988b816678c6442a136a1c0 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 5 Feb 2013 01:48:22 +0100 Subject: [PATCH] little evaluate docstring fix --- jedi/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/evaluate.py b/jedi/evaluate.py index f0736e2d..26e25bbc 100644 --- a/jedi/evaluate.py +++ b/jedi/evaluate.py @@ -44,7 +44,7 @@ This is exactly where it starts to get complicated. Now recursions start to kick in. The statement has not been resolved fully, but now we need to resolve the datetime import. So it continues -- follow import, which happens in the :mod:imports module. +- follow import, which happens in the :mod:`imports` module. - now the same ``follow_call`` as above calls ``follow_paths`` to follow the second part of the statement ``date``. - After ``follow_paths`` returns with the desired ``datetime.date`` class, the