@@ -631,8 +631,8 @@ def png(self, *args, **kwds):
631
631
We want to make sure that we actually can view R graphics, which happens
632
632
differently on different platforms::
633
633
634
- sage: s = r.eval('capabilities("png")') # Should be on Linux and Solaris
635
- sage: t = r.eval('capabilities("aqua")') # Should be on all supported Mac versions
634
+ sage: s = r.eval('capabilities("png")') # should be on Linux and Solaris
635
+ sage: t = r.eval('capabilities("aqua")') # should be on all supported Mac versions
636
636
sage: "TRUE" in s+t # optional - rgraphics
637
637
True
638
638
"""
@@ -1158,7 +1158,7 @@ def completions(self, s):
1158
1158
1159
1159
EXAMPLES::
1160
1160
1161
- sage: dummy = r._tab_completion(use_disk_cache=False) # clean doctest
1161
+ sage: dummy = r._tab_completion(use_disk_cache=False) # clean doctest
1162
1162
sage: 'testInheritedMethods' in r.completions('tes')
1163
1163
True
1164
1164
"""
@@ -1306,7 +1306,7 @@ def plot(self, *args, **kwds):
1306
1306
would need to use the following since R lattice graphics do
1307
1307
not automatically print away from the command line::
1308
1308
1309
- sage: filename = tmp_filename() + '.png' # Not needed in notebook, used for doctesting
1309
+ sage: filename = tmp_filename() + '.png' # not needed in notebook, used for doctesting
1310
1310
sage: r.png(filename='"%s"'%filename) # optional - rgraphics
1311
1311
NULL
1312
1312
sage: r.library("lattice")
0 commit comments