Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
27866: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mwageringel committed Aug 25, 2019
1 parent f504d7a commit 3099f48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions src/sage/plot/graphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3326,10 +3326,11 @@ def inset(self, graphics, pos=None, fontsize=None):
- ``graphics`` -- the graphics object (instance of :class:`Graphics`)
to be added as an inset to the current graphics
- ``pos`` -- (default: ``None``) 4-tupe ``(left, bottom, width, height)``
- ``pos`` -- (default: ``None``) 4-tuple
``(left, bottom, width, height)``
specifying the location and size of the inset on the figure, all
quantities being in fractions of the figure width and height; if
``None``, the value ``(0.70, 068, 0.2, 0.2)`` is used
``None``, the value ``(0.70, 0.68, 0.2, 0.2)`` is used
- ``fontsize`` -- (default: ``None``) integer, font size (in points)
for the inset; if ``None``, the value of 6 points is used, unless
Expand Down
6 changes: 3 additions & 3 deletions src/sage/plot/multigraphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class MultiGraphics(WithEqualityById, SageObject):
G.append(g3, pos=(0.63, 0.12, 0.3, 0.3))
sphinx_plot(G)
We can access to the individual elements composing ``G`` with the
We can access the individual elements composing ``G`` with the
square-bracket operator::
sage: print(G[0])
Expand Down Expand Up @@ -653,7 +653,7 @@ def inset(self, graphics, pos=None, fontsize=None):
``(left, bottom, width, height)`` specifying the location and
relative size of the inset on the canvas, all quantities being
expressed in fractions of the canvas width and height; if ``None``,
the value ``(0.70, 068, 0.2, 0.2)`` is used
the value ``(0.70, 0.68, 0.2, 0.2)`` is used
- ``fontsize`` -- (default: ``None``) integer, font size (in points)
for the inset; if ``None``, the value of 6 points is used, unless
Expand Down Expand Up @@ -1028,7 +1028,7 @@ class GraphicsArray(MultiGraphics):
G = graphics_array([g1, g2, g3, g4])
sphinx_plot(G, figsize=[8, 3])
We can access to individual elements of the graphics array with the
We can access individual elements of the graphics array with the
square-bracket operator::
sage: G = graphics_array([[g1, g2], [g3, g4]]) # back to the 2x2 array
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3603,7 +3603,7 @@ def multi_graphics(graphics_list):
- a pair ``(graphics, position)``, where ``graphics`` is a
:class:`~sage.plot.graphics.Graphics` object and ``position`` is
the 4-tupe ``(left, bottom, width, height)`` specifying the location
the 4-tuple ``(left, bottom, width, height)`` specifying the location
and size of the graphics on the canvas, all quantities being in
fractions of the canvas width and height
Expand Down

0 comments on commit 3099f48

Please sign in to comment.