diff options
| author | Paul Eggert | 2011-12-04 00:02:42 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-12-04 00:02:42 -0800 |
| commit | c80e3b4aed2e70eb6d8445d786c0df770094e9e1 (patch) | |
| tree | e44fe2f2604d66890ec2442ea23e73ee5011907a /doc | |
| parent | a24bf23e0f6e5cea917b77cc455314cdcc31be5b (diff) | |
| download | emacs-c80e3b4aed2e70eb6d8445d786c0df770094e9e1.tar.gz emacs-c80e3b4aed2e70eb6d8445d786c0df770094e9e1.zip | |
Spelling fixes.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/calc.texi | 24 | ||||
| -rw-r--r-- | doc/misc/idlwave.texi | 4 | ||||
| -rw-r--r-- | doc/misc/message.texi | 2 | ||||
| -rw-r--r-- | doc/misc/org.texi | 6 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 2 |
5 files changed, 19 insertions, 19 deletions
diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi index 32311ff5c3e..535efd86270 100644 --- a/doc/misc/calc.texi +++ b/doc/misc/calc.texi | |||
| @@ -12878,7 +12878,7 @@ To declare specifically that @code{x} is real and non-zero, | |||
| 12878 | use @samp{[[-inf .. 0), (0 .. inf]]}. (There is no way in the | 12878 | use @samp{[[-inf .. 0), (0 .. inf]]}. (There is no way in the |
| 12879 | current notation to say that @code{x} is nonzero but not necessarily | 12879 | current notation to say that @code{x} is nonzero but not necessarily |
| 12880 | real.) The @kbd{a e} command does ``unsafe'' simplifications, | 12880 | real.) The @kbd{a e} command does ``unsafe'' simplifications, |
| 12881 | including cancelling @samp{x} from the equation when @samp{x} is | 12881 | including canceling @samp{x} from the equation when @samp{x} is |
| 12882 | not known to be nonzero. | 12882 | not known to be nonzero. |
| 12883 | 12883 | ||
| 12884 | Another set of type symbols distinguish between scalars and vectors. | 12884 | Another set of type symbols distinguish between scalars and vectors. |
| @@ -21903,7 +21903,7 @@ of our sample formula by selecting it and pressing @kbd{n} | |||
| 21903 | @end smallexample | 21903 | @end smallexample |
| 21904 | 21904 | ||
| 21905 | Unselecting the sub-formula reveals that the minus sign, which would | 21905 | Unselecting the sub-formula reveals that the minus sign, which would |
| 21906 | normally have cancelled out with the subtraction automatically, has | 21906 | normally have canceled out with the subtraction automatically, has |
| 21907 | not been able to do so because the subtraction was not part of the | 21907 | not been able to do so because the subtraction was not part of the |
| 21908 | selected portion. Pressing @kbd{=} (@code{calc-evaluate}) or doing | 21908 | selected portion. Pressing @kbd{=} (@code{calc-evaluate}) or doing |
| 21909 | any other mathematical operation on the whole formula will cause it | 21909 | any other mathematical operation on the whole formula will cause it |
| @@ -22590,7 +22590,7 @@ described for multiplication. | |||
| 22590 | 22590 | ||
| 22591 | Quotients of products cancel only in the leading terms of the | 22591 | Quotients of products cancel only in the leading terms of the |
| 22592 | numerator and denominator. In other words, @expr{a x b / a y b} | 22592 | numerator and denominator. In other words, @expr{a x b / a y b} |
| 22593 | is cancelled to @expr{x b / y b} but not to @expr{x / y}. Once | 22593 | is canceled to @expr{x b / y b} but not to @expr{x / y}. Once |
| 22594 | again this is because full cancellation can be slow; use @kbd{a s} | 22594 | again this is because full cancellation can be slow; use @kbd{a s} |
| 22595 | to cancel all terms of the quotient. | 22595 | to cancel all terms of the quotient. |
| 22596 | 22596 | ||
| @@ -22810,7 +22810,7 @@ the distributive law. For example, @expr{a x^2 b / c x^3 d} will | |||
| 22810 | cancel @expr{x^2} from the top and bottom to get @expr{a b / c x d}. | 22810 | cancel @expr{x^2} from the top and bottom to get @expr{a b / c x d}. |
| 22811 | (The terms in the denominator will then be rearranged to @expr{c d x} | 22811 | (The terms in the denominator will then be rearranged to @expr{c d x} |
| 22812 | as described above.) If there is any common integer or fractional | 22812 | as described above.) If there is any common integer or fractional |
| 22813 | factor in the numerator and denominator, it is cancelled out; | 22813 | factor in the numerator and denominator, it is canceled out; |
| 22814 | for example, @expr{(4 x + 6) / 8 x} simplifies to @expr{(2 x + 3) / 4 x}. | 22814 | for example, @expr{(4 x + 6) / 8 x} simplifies to @expr{(2 x + 3) / 4 x}. |
| 22815 | 22815 | ||
| 22816 | Non-constant common factors are not found even by @kbd{a s}. To | 22816 | Non-constant common factors are not found even by @kbd{a s}. To |
| @@ -22858,7 +22858,7 @@ example, @samp{(x - 23) % 10} is simplified to @samp{(x + 7) % 10}. | |||
| 22858 | 22858 | ||
| 22859 | If the argument is multiplied by a constant, and this constant | 22859 | If the argument is multiplied by a constant, and this constant |
| 22860 | has a common integer divisor with the modulus, then this factor is | 22860 | has a common integer divisor with the modulus, then this factor is |
| 22861 | cancelled out. For example, @samp{12 x % 15} is changed to | 22861 | canceled out. For example, @samp{12 x % 15} is changed to |
| 22862 | @samp{3 (4 x % 5)} by factoring out 3. Also, @samp{(12 x + 1) % 15} | 22862 | @samp{3 (4 x % 5)} by factoring out 3. Also, @samp{(12 x + 1) % 15} |
| 22863 | is changed to @samp{3 ((4 x + 1:3) % 5)}. While these forms may | 22863 | is changed to @samp{3 ((4 x + 1:3) % 5)}. While these forms may |
| 22864 | not seem ``simpler,'' they allow Calc to discover useful information | 22864 | not seem ``simpler,'' they allow Calc to discover useful information |
| @@ -22938,13 +22938,13 @@ function. | |||
| 22938 | \bigskip | 22938 | \bigskip |
| 22939 | @end tex | 22939 | @end tex |
| 22940 | 22940 | ||
| 22941 | Equations and inequalities are simplified by cancelling factors | 22941 | Equations and inequalities are simplified by canceling factors |
| 22942 | of products, quotients, or sums on both sides. Inequalities | 22942 | of products, quotients, or sums on both sides. Inequalities |
| 22943 | change sign if a negative multiplicative factor is cancelled. | 22943 | change sign if a negative multiplicative factor is canceled. |
| 22944 | Non-constant multiplicative factors as in @expr{a b = a c} are | 22944 | Non-constant multiplicative factors as in @expr{a b = a c} are |
| 22945 | cancelled from equations only if they are provably nonzero (generally | 22945 | canceled from equations only if they are provably nonzero (generally |
| 22946 | because they were declared so; @pxref{Declarations}). Factors | 22946 | because they were declared so; @pxref{Declarations}). Factors |
| 22947 | are cancelled from inequalities only if they are nonzero and their | 22947 | are canceled from inequalities only if they are nonzero and their |
| 22948 | sign is known. | 22948 | sign is known. |
| 22949 | 22949 | ||
| 22950 | Simplification also replaces an equation or inequality with | 22950 | Simplification also replaces an equation or inequality with |
| @@ -23035,9 +23035,9 @@ The simplifications of @expr{@tfn{ln}(@tfn{exp}(x))}, | |||
| 23035 | unsafe because of problems with principal values (although these | 23035 | unsafe because of problems with principal values (although these |
| 23036 | simplifications are safe if @expr{x} is known to be real). | 23036 | simplifications are safe if @expr{x} is known to be real). |
| 23037 | 23037 | ||
| 23038 | Common factors are cancelled from products on both sides of an | 23038 | Common factors are canceled from products on both sides of an |
| 23039 | equation, even if those factors may be zero: @expr{a x / b x} | 23039 | equation, even if those factors may be zero: @expr{a x / b x} |
| 23040 | to @expr{a / b}. Such factors are never cancelled from | 23040 | to @expr{a / b}. Such factors are never canceled from |
| 23041 | inequalities: Even @kbd{a e} is not bold enough to reduce | 23041 | inequalities: Even @kbd{a e} is not bold enough to reduce |
| 23042 | @expr{a x < b x} to @expr{a < b} (or @expr{a > b}, depending | 23042 | @expr{a x < b x} to @expr{a < b} (or @expr{a > b}, depending |
| 23043 | on whether you believe @expr{x} is positive or negative). | 23043 | on whether you believe @expr{x} is positive or negative). |
| @@ -23071,7 +23071,7 @@ If units auto-ranging mode is enabled, products or quotients in | |||
| 23071 | which the first argument is a number which is out of range for the | 23071 | which the first argument is a number which is out of range for the |
| 23072 | leading unit are modified accordingly. | 23072 | leading unit are modified accordingly. |
| 23073 | 23073 | ||
| 23074 | When cancelling and combining units in products and quotients, | 23074 | When canceling and combining units in products and quotients, |
| 23075 | Calc accounts for unit names that differ only in the prefix letter. | 23075 | Calc accounts for unit names that differ only in the prefix letter. |
| 23076 | For example, @samp{2 km m} is simplified to @samp{2000 m^2}. | 23076 | For example, @samp{2 km m} is simplified to @samp{2000 m^2}. |
| 23077 | However, compatible but different units like @code{ft} and @code{in} | 23077 | However, compatible but different units like @code{ft} and @code{in} |
diff --git a/doc/misc/idlwave.texi b/doc/misc/idlwave.texi index 3e13dbb0f23..5149eb91651 100644 --- a/doc/misc/idlwave.texi +++ b/doc/misc/idlwave.texi | |||
| @@ -1580,8 +1580,8 @@ available will be emphasized (e.g. colored blue). For other items, the | |||
| 1580 | corresponding source code or DocLib header will be used as the help | 1580 | corresponding source code or DocLib header will be used as the help |
| 1581 | text. | 1581 | text. |
| 1582 | 1582 | ||
| 1583 | @cindex Completion, cancelling | 1583 | @cindex Completion, canceling |
| 1584 | @cindex Cancelling completion | 1584 | @cindex Canceling completion |
| 1585 | Completion is not a blocking operation --- you are free to continue | 1585 | Completion is not a blocking operation --- you are free to continue |
| 1586 | editing, enter commands, or simply ignore the @file{*Completions*} | 1586 | editing, enter commands, or simply ignore the @file{*Completions*} |
| 1587 | buffer during a completion operation. If, however, the most recent | 1587 | buffer during a completion operation. If, however, the most recent |
diff --git a/doc/misc/message.texi b/doc/misc/message.texi index d9062a32572..774bf180266 100644 --- a/doc/misc/message.texi +++ b/doc/misc/message.texi | |||
| @@ -1974,7 +1974,7 @@ that look like: | |||
| 1974 | Hallvard B Furuseth <h.b.furuseth@@usit.uio.no> writes: | 1974 | Hallvard B Furuseth <h.b.furuseth@@usit.uio.no> writes: |
| 1975 | @end example | 1975 | @end example |
| 1976 | 1976 | ||
| 1977 | @c FIXME: Add `message-insert-formated-citation-line' and | 1977 | @c FIXME: Add `message-insert-formatted-citation-line' and |
| 1978 | @c `message-citation-line-format' | 1978 | @c `message-citation-line-format' |
| 1979 | 1979 | ||
| 1980 | Point will be at the beginning of the body of the message when this | 1980 | Point will be at the beginning of the body of the message when this |
diff --git a/doc/misc/org.texi b/doc/misc/org.texi index 181e00f8e02..a6fae5e216f 100644 --- a/doc/misc/org.texi +++ b/doc/misc/org.texi | |||
| @@ -11399,16 +11399,16 @@ a file is retrieved with @code{org-publish-find-date}. | |||
| 11399 | @tab Should sorting be case-sensitive? Default @code{nil}. | 11399 | @tab Should sorting be case-sensitive? Default @code{nil}. |
| 11400 | 11400 | ||
| 11401 | @item @code{:sitemap-file-entry-format} | 11401 | @item @code{:sitemap-file-entry-format} |
| 11402 | @tab With this option one can tell how a sitemap's entry is formated in the | 11402 | @tab With this option one can tell how a sitemap's entry is formatted in the |
| 11403 | sitemap. This is a format string with some escape sequences: @code{%t} stands | 11403 | sitemap. This is a format string with some escape sequences: @code{%t} stands |
| 11404 | for the title of the file, @code{%a} stands for the author of the file and | 11404 | for the title of the file, @code{%a} stands for the author of the file and |
| 11405 | @code{%d} stands for the date of the file. The date is retrieved with the | 11405 | @code{%d} stands for the date of the file. The date is retrieved with the |
| 11406 | @code{org-publish-find-date} function and formated with | 11406 | @code{org-publish-find-date} function and formatted with |
| 11407 | @code{org-publish-sitemap-date-format}. Default @code{%t}. | 11407 | @code{org-publish-sitemap-date-format}. Default @code{%t}. |
| 11408 | 11408 | ||
| 11409 | @item @code{:sitemap-date-format} | 11409 | @item @code{:sitemap-date-format} |
| 11410 | @tab Format string for the @code{format-time-string} function that tells how | 11410 | @tab Format string for the @code{format-time-string} function that tells how |
| 11411 | a sitemap entry's date is to be formated. This property bypasses | 11411 | a sitemap entry's date is to be formatted. This property bypasses |
| 11412 | @code{org-publish-sitemap-date-format} which defaults to @code{%Y-%m-%d}. | 11412 | @code{org-publish-sitemap-date-format} which defaults to @code{%Y-%m-%d}. |
| 11413 | 11413 | ||
| 11414 | @item @code{:sitemap-sans-extension} | 11414 | @item @code{:sitemap-sans-extension} |
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index f7f340074a2..e2c2594b66e 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -3704,4 +3704,4 @@ for @value{emacsothername}. | |||
| 3704 | @c host and then send commands to it. | 3704 | @c host and then send commands to it. |
| 3705 | @c * Use `filename' resp. `file name' consistently. | 3705 | @c * Use `filename' resp. `file name' consistently. |
| 3706 | @c * Use `host' resp. `machine' consistently. | 3706 | @c * Use `host' resp. `machine' consistently. |
| 3707 | @c * Consistent small or capitalized words especially in menues. | 3707 | @c * Consistent small or capitalized words especially in menus. |