Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b0b0878

Browse files
fix some typos
1 parent 7b566c5 commit b0b0878

7 files changed

+18
-18
lines changed

‎2011年01月27日-how-to-contribute.rst‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Twenty Two Easy Steps
6464
+-----------------------------------+-----------------------------------+
6565
| 6. Enable Mercurial queues | 17. More on Mercurial queues |
6666
+-----------------------------------+-----------------------------------+
67-
| 7. Create an empty patch | 18. Dowload a patch |
67+
| 7. Create an empty patch | 18. Download a patch |
6868
+-----------------------------------+-----------------------------------+
6969
| 8. Fix the bug | 19. Edit the series file |
7070
+-----------------------------------+-----------------------------------+
@@ -176,7 +176,7 @@ Sage uses the program :red:`Mercurial` ( **hg** or **sage -hg** ) to manage all
176176
of its source code. Mercurial stores the evolution of every single file of Sage
177177
*since the beginning*.
178178

179-
Since I am too lazy to write **sage -hg** everytime I use Mercurial, I added
179+
Since I am too lazy to write **sage -hg** every time I use Mercurial, I added
180180
the following line to my ``~/.bashrc`` file:
181181

182182
.. container:: red
@@ -235,7 +235,7 @@ the file ``~/.hgrc`` and make sure it contains the line :red:`hgext.mq =` in
235235
the extensions section::
236236

237237
[ui]
238-
username = Sebastien Labbe <hidden adress email>
238+
username = Sebastien Labbe <hidden email>
239239
[extensions]
240240
hgext.mq =
241241
color =
@@ -399,13 +399,13 @@ Export the patch with **hg export**::
399399
hg export trac_12345-add_useless_print-sl.patch >
400400
~/Documents/tmp/trac_12345-add_useless_print-sl.patch
401401

402-
The command **hg export** also adds informations in the patch (author name, date, ...).
402+
The command **hg export** also adds information in the patch (author name, date, ...).
403403

404404
.. container:: small
405405

406406
.. Note::
407407

408-
Personnaly, I added the following alias to my ``~/.bashrc``::
408+
Personally, I added the following alias to my ``~/.bashrc``::
409409

410410
alias qtoptotmp='hg export `hg qtop` > ~/Documents/tmp/`hg qtop`'
411411

@@ -423,7 +423,7 @@ Here is an example of a patch exported by Mercurial for the imaginary ticket
423423
::
424424

425425
# HG changeset patch
426-
# User Sebastien Labbe <hidden adress email>
426+
# User Sebastien Labbe <hidden email>
427427
# Date 1295311529 -3600
428428
# Node ID 4a6379cf0c965e1ce309846cbcb9f864932a3b6c
429429
# Parent 83e5e45a8935ac627c45ed14042bbebafeb1a800
@@ -479,8 +479,8 @@ Other useful Mercurial commands when patches multiplies:
479479
**hg qunapplied**
480480
Print the unapplied stack
481481
482-
18. Dowload a patch
483-
===================
482+
18. Download a patch
483+
====================
484484

485485
A feature available on a Sage Trac ticket interests you? You want to review a
486486
ticket?

‎demo-basics.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Symbolic calculations::
7070

7171
.. todo:: arbitrary precision numerical approximation of the solution
7272

73-
.. Simplication + exact solution
73+
.. Simplification + exact solution
7474
7575
::
7676

‎demo-profiling.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ Let's use it::
5757
Graphical visualization with `runsnake`
5858
---------------------------------------
5959

60-
I find the output easier to intepret with `runsnake`; but this may
61-
just be a bias from having used it quite some. On the other hand it's
60+
I find the output easier to interpret with `runsnake`; but this may
61+
just be a bias from having used it quite some. On the other hand it is
6262
not integrated in the browser and harder to install.
6363

6464
Installation on Linux::

‎demo-symmetric-functions.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Demonstration: Symmetric functions
2020

2121
::
2222

23-
sage: # Typing 'objectname.<tab>' gives a lot of information about whant
23+
sage: # Typing 'objectname.<tab>' gives a lot of information about what
2424
sage: # you can do with the object
2525
sage: S.
2626

‎tutorial-editing-sage-sources.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ On the computer where this tutorial has been written, ``/opt/sage`` is
7272
the root directory of ``Sage``, which is usually called
7373
``SAGE_ROOT``. Please adapt all the examples below to your particular
7474
setup. Then, ``local/lib/python2.6/site-packages/`` is the
75-
subdirectory where ``Python`` code gets installed. Finaly
75+
subdirectory where ``Python`` code gets installed. Finally
7676
``sage/combinat/permutation.py`` is the file containing the ``Python``
7777
module ``sage.combinat.permutation`` where this method is
7878
implemented::

‎tutorial-how-to-contribute.rst‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ edit (or create) the file ``~/.hgrc`` and make sure it contains *your*
127127
user name, and the line **hgext.mq =** in the ``extensions`` section::
128128

129129
[ui]
130-
username = Sebastien Labbe <hidden adress email>
130+
username = Sebastien Labbe <hidden email>
131131

132132
[extensions]
133133
hgext.mq =
@@ -185,7 +185,7 @@ Export the patch with **hg export**::
185185

186186
> **hg export trac_11299-fix_modform_element_qexp_documentation-nt.patch > /tmp/trac_11299-fix_modform_element_qexp_documentation-nt.patch**
187187

188-
The command **hg export** also adds informations in the patch (author name, date, ...).
188+
The command **hg export** also adds information in the patch (author name, date, ...).
189189

190190
.. Note::
191191

@@ -388,7 +388,7 @@ Once you’ve tested the patch, report any failures on the Trac page for the tic
388388
Make suggestions about simplifying the code or fixing typos you noticed.
389389

390390
.. note:: The experimental `Sage patch buildbot <http://wiki.sagemath.org/buildbot>`_
391-
automatizes some of the steps.
391+
automates some of the steps.
392392

393393
15. Positive review or Needs work
394394
=================================

‎tutorial-partitions.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Mélodie Lapointe (lapointe.melodie@courrier.uqam.ca) and Pauline Hubert (hubert
88
Partitions
99
----------
1010

11-
Recall that a **partition** :math:`\mu` of :math:`n`, one writes :math:`\mu \vdash n` or :math:`n = |\mu|`, is an sequence of intergers :math:`(\mu_0,\mu_1,\dots,\mu_{k-1})` (the :math:`m_i`'s are the **parts** of :math:`\mu`) with :math:`\mu_0 \geq \mu_1 \geq \dots \geq \mu_{k-1} \geq 0` and :math:`n = \mu_0 + \mu_1 + \dots + \mu_{k-1}`. The number :math:`\ell(\mu):= k` of parts of :math:`\mu` is said to be its **length**. A partition :math:`\mu` may also be described as a **Ferrers diagram**, which is the :math:`n`-subset of :math:`\mathbb{N}\times \mathbb{N}` :
11+
Recall that a **partition** :math:`\mu` of :math:`n`, one writes :math:`\mu \vdash n` or :math:`n = |\mu|`, is an sequence of integers :math:`(\mu_0,\mu_1,\dots,\mu_{k-1})` (the :math:`m_i`'s are the **parts** of :math:`\mu`) with :math:`\mu_0 \geq \mu_1 \geq \dots \geq \mu_{k-1} \geq 0` and :math:`n = \mu_0 + \mu_1 + \dots + \mu_{k-1}`. The number :math:`\ell(\mu):= k` of parts of :math:`\mu` is said to be its **length**. A partition :math:`\mu` may also be described as a **Ferrers diagram**, which is the :math:`n`-subset of :math:`\mathbb{N}\times \mathbb{N}` :
1212

1313
.. Math::
1414
\left\{(a,b)|0 \leq a \leq \mu_i \text{ and } b < \ell(\mu)\right\}.
@@ -185,7 +185,7 @@ The default (total) order on partitions is the lexicographic order.
185185
Young Tableaux
186186
--------------
187187

188-
An A-valued **Young tableaux** of **shape** :math:`\mu` is a "filling" of the cells of a Ferrers diagram of :math:`\mu` with elements of an ordered set A. Hence, it is a function :math:`\tau:\mu \rightarrow A`. A tableau is said to be **standard** if it is bijective (hence A has cardinality equal to the number of cells of :math:`\mu`), and its entries on each row (and each column) are stricly increasing from left to right (from bottom to top in french convention). A tableau (not necessarily bijective) is said to be **semistandard** if its entries are weakly increasing from left to right on each row, and strictly increasing on each column. These object can be constructed in the following way.
188+
An A-valued **Young tableaux** of **shape** :math:`\mu` is a "filling" of the cells of a Ferrers diagram of :math:`\mu` with elements of an ordered set A. Hence, it is a function :math:`\tau:\mu \rightarrow A`. A tableau is said to be **standard** if it is bijective (hence A has cardinality equal to the number of cells of :math:`\mu`), and its entries on each row (and each column) are strictly increasing from left to right (from bottom to top in french convention). A tableau (not necessarily bijective) is said to be **semistandard** if its entries are weakly increasing from left to right on each row, and strictly increasing on each column. These object can be constructed in the following way.
189189

190190
::
191191

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /