File: spelling_errors

package info (click to toggle)
latexml 0.8.8-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 31,896 kB
  • sloc: xml: 109,048; perl: 30,224; sh: 179; javascript: 28; makefile: 15
file content (91 lines) | stat: -rw-r--r-- 3,434 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
Description: Fix spelling errors in source code.
Origin: Hilmar Preusse <hille42@web.de>
Forwarded: https://github.com/brucemiller/LaTeXML/pull/2332
Author: Hilmar Preusse <hille42@web.de>
Applied-Upstream: https://github.com/brucemiller/LaTeXML/pull/2332/commits/573d7b25d44cdfc33a473dc465e8bd4fea241ae3
Last-Update: 2022-12-18

--- latexml.orig/lib/LaTeXML/Core/KeyVal.pm
+++ latexml/lib/LaTeXML/Core/KeyVal.pm
@@ -274,19 +274,19 @@
 
 =item C<< $keyval->defineOrdinary($code); >>
 
-Helper function to define $STATE neccesary for an ordinary key. 
+Helper function to define $STATE necessary for an ordinary key. 
 
 =item C<< $keyval->defineCommand($code, $macroprefix); >>
 
-Helper function to define $STATE neccesary for a command key. 
+Helper function to define $STATE necessary for a command key. 
 
 =item C<< $keyval->defineChoice($code, $mismatch, $choices, $normalize, $bin); >>
 
-Helper function to define $STATE neccesary for an choice key. 
+Helper function to define $STATE necessary for an choice key. 
 
 =item C<< $keyval->defineBoolean($code, $mismatch, $macroprefix); >>
 
-Helper function to define $STATE neccesary for a boolean key. 
+Helper function to define $STATE necessary for a boolean key. 
 
 =back
 
--- latexml.orig/lib/LaTeXML/Core/KeyVals.pm
+++ latexml/lib/LaTeXML/Core/KeyVals.pm
@@ -524,7 +524,7 @@
 C<'KV'>. If given, prefix should be a string. 
 
 I<keysets> should be a list of keysets to find keys inside of. If given, it
-should either be reference to a list of strings or a comma-seperated string. 
+should either be reference to a list of strings or a comma-separated string. 
 This argument defaults to C<'_anonymous_'>. 
 
 Furthermore, the KeyVals constructor accepts a variety of options that can
@@ -532,7 +532,7 @@
 I<skip>, I<skipMissing>, I<hookMissing>, I<open>, I<close>.
 
 I<setAll> is a flag that, if set, ensures that keys will be set in all existing
-keysets, instad of only in the first one. 
+keysets, instead of only in the first one. 
 
 I<setInternals> is a flag that, if set, ensures that certain 'xkeyval' package
 internals are set during key digestion. 
@@ -547,7 +547,7 @@
 key macro which is then extended to contain a comman-separated list of the
 undefined keys. 
 
-I<hookMissing> allows to call a specific macro if a single key is unknown during
+I<hookMissing> allows one to call a specific macro if a single key is unknown during
 key digestion. 
 
 =back
@@ -695,7 +695,7 @@
 
 =item C<< $str = $keyvals->toString(); >>
 
-Turns this object into a key=value comma seperated string. 
+Turns this object into a key=value comma separated string. 
 
 =back
 
--- latexml.orig/lib/LaTeXML/Common/Locator.pm
+++ latexml/lib/LaTeXML/Common/Locator.pm
@@ -146,7 +146,7 @@
 containing the line and column numbers of the start of the range in the source
 file, or undef if unknown. C<$toLine> and C<$toCol> should be the integers
 containing the line and column numbers of the end of the range, or undef 
-if a point is being refered to. 
+if a point is being referred to. 
 
 =item C<< $locator = LaTeXML::Common::Locator->newRange($from, $to); >>
 
@@ -179,7 +179,7 @@
 
 =item C<< $source = $locator->getShortSource($stringSource); >>
 
-Gets a short string refering to the source of this locator. 
+Gets a short string referring to the source of this locator. 
 C<$stringSource> will be used if the source refers to an
 anonymous or literal string input.