SF bug #1209411: divmod documentation shd reference // not /
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index 7b990e9..cd14865 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -297,7 +297,7 @@
consisting of their quotient and remainder when using long division. With
mixed operand types, the rules for binary arithmetic operators apply. For
plain and long integers, the result is the same as
- \code{(\var{a} / \var{b}, \var{a} \%{} \var{b})}.
+ \code{(\var{a} // \var{b}, \var{a} \%{} \var{b})}.
For floating point numbers the result is \code{(\var{q}, \var{a} \%{}
\var{b})}, where \var{q} is usually \code{math.floor(\var{a} /
\var{b})} but may be 1 less than that. In any case \code{\var{q} *