Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling errors in some perl modules. #2332

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/LaTeXML/Common/Locator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ case of an anonymous string. C<$fromLine> and C<$fromCol> should be integers
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); >>

Expand Down Expand Up @@ -179,7 +179,7 @@ Checks if this locator points to a range or a point.

=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.

Expand Down
8 changes: 4 additions & 4 deletions lib/LaTeXML/Core/KeyVal.pm
Original file line number Diff line number Diff line change
Expand Up @@ -274,19 +274,19 @@ meta-data is stored.

=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

Expand Down
8 changes: 4 additions & 4 deletions lib/LaTeXML/Core/KeyVals.pm
Original file line number Diff line number Diff line change
Expand Up @@ -524,15 +524,15 @@ I<prefix> is the given prefix all key-value pairs operate in and defaults to
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
be used to customize its behaviour. These are I<setAll>, I<setInternals>,
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.
Expand All @@ -547,7 +547,7 @@ such a key, if set to C<1> they are ignored. Alternatively, this can be set to a
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
Expand Down Expand Up @@ -695,7 +695,7 @@ sequence of Tokens that was used to be read it from the gullet.

=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

Expand Down
Loading