Skip to content

Commit ac69da3

Browse files
author
Matthias Koeppe
committed
src/sage/typeset/character_art.py: Fix up # needs
1 parent 8db7b0f commit ac69da3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/typeset/character_art.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ def __format__(self, fmt):
161161
162162
EXAMPLES::
163163
164-
sage: M = matrix([[1,2],[3,4]]) # needs sage.matrix
165-
sage: format(ascii_art(M)) # needs sage.matrix
164+
sage: M = matrix([[1,2],[3,4]]) # needs sage.modules
165+
sage: format(ascii_art(M)) # needs sage.modules
166166
'[1 2]\n[3 4]'
167-
sage: format(unicode_art(M)) # needs sage.matrix
167+
sage: format(unicode_art(M)) # needs sage.modules
168168
'\u239b1 2\u239e\n\u239d3 4\u23a0'
169169
"""
170170
return format(self._string_type(self), fmt)

0 commit comments

Comments
 (0)