Skip to content

Commit

Permalink
Trac #15939: Typo on backslash operator documentation: uses regular s…
Browse files Browse the repository at this point in the history
…lash instead of backslash

sage/misc/preparser.py, line 1346:

Says:

{{{
    Implements Matlab-style backslash operator for solving systems::

        A / b
}}}
Should say:

{{{
    Implements Matlab-style backslash operator for solving systems::

        A \ b
}}}

URL: http://trac.sagemath.org/15939
Reported by: cousteau
Ticket author(s): Volker Braun
Reviewer(s): Matthieu Dien
  • Loading branch information
Release Manager authored and vbraun committed Apr 8, 2014
2 parents 056b4f5 + 708e68c commit bfea45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/misc/preparser.py
Expand Up @@ -1343,7 +1343,7 @@ class BackslashOperator:
"""
Implements Matlab-style backslash operator for solving systems::
A / b
A \\ b
EXAMPLES::
Expand Down

0 comments on commit bfea45c

Please sign in to comment.