Skip to content

Commit 209a3a8

Browse files
author
H.Merijn Brand - Tux
committed
Spell checking
• Two obvious one's • Most spell checkers do not like "isn't" and "doesn't". Use "is not" and "does not" instead
1 parent 8a33cee commit 209a3a8

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

.aspell.local.pws

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ gz
2626
indices
2727
ini
2828
isn
29+
Jens
2930
Jochen
3031
jwiedATcpan
3132
jZed
@@ -39,6 +40,7 @@ NVL
3940
param
4041
params
4142
PerlMonks
43+
polymorphism
4244
PrintError
4345
RaiseError
4446
reentrant
@@ -50,6 +52,7 @@ RSS
5052
Schubbert
5153
Sterin
5254
subquery
55+
TableA
5356
UDF
5457
UDFs
5558
ve

lib/SQL/Eval.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Hash reference containing additional capabilities.
278278
=item _gen_access_fastpath
279279
280280
Return a subroutine reference for fast accessing columns for read-only
281-
access. When the instantiated object doesn't provide own methods for
281+
access. When the instantiated object does not provide own methods for
282282
C<column> and C<column_num> a subroutine reference is returned which
283283
directly access the internal data structures. For all other cases a
284284
subroutine directly calling C<< $self->column($_[0]) >> is returned.
@@ -512,7 +512,7 @@ indexes.
512512
=head1 MULTITHREADING
513513
514514
All methods are working with instance-local data only, thus the module
515-
is reentrant and thread safe, if you either don't share handles between
515+
is reentrant and thread safe, if you either do not share handles between
516516
threads or grant serialized use.
517517
518518
=head1 BUGS

lib/SQL/Statement.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ sub verify_columns
15371537
}
15381538

15391539
# the following should be probably conditioned on an option,
1540-
# but I don't know which --BW
1540+
# but I do not know which --BW
15411541
elsif ( 'USING' eq $join->{clause} )
15421542
{
15431543
my @keys = @{ $join->{keycols} };

lib/SQL/Statement/Function.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SQL::Statement::Function - abstract base class for all function executing terms
2727
2828
=head1 SYNOPSIS
2929
30-
# this class doesn't have a common constructor, because all derived classes
30+
# this class does not have a common constructor, because all derived classes
3131
# have their special requirements
3232
3333
=head1 DESCRIPTION
@@ -287,7 +287,7 @@ The character to trim - defaults to C<' '>
287287
288288
=item I<\@params>
289289
290-
Expected to be an array with exact 1 element (more aren't evaluated).
290+
Expected to be an array with exact 1 element (more are not evaluated).
291291
292292
=back
293293
@@ -381,7 +381,7 @@ If omitted, everything to the end of the string is returned.
381381
382382
=item I<\@params>
383383
384-
Expected to be an array with exact 1 element (more aren't evaluated).
384+
Expected to be an array with exact 1 element (more are not evaluated).
385385
386386
=back
387387

lib/SQL/Statement/Roadmap.pod

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ may help us to design SQL::Statement 2.xx much better.
2222
=head3 CREATE and DROP of FUNCTION, KEYWORD, OPERATOR, TYPE
2323

2424
SQL::Statement is missing some functions, types, operators etc. It's
25-
supported to add missing functionality - but the implementation wasn't
25+
supported to add missing functionality - but the implementation was not
2626
picked up during the modernizing of column evaluation. See RT#52397
2727
for some more information.
2828

lib/SQL/Statement/Syntax.pod

+4-4
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Delimited identifiers (table and column names *with* quotes around them) are
283283
case SENSITIVE so column "foo", "fOo", "FOO" each refer to different columns.
284284

285285
A delimited identifier is *never* equal to a regular identifier (so "foo" and
286-
foo are two different columns). But don't do that :-).
286+
foo are two different columns). But do not do that :-).
287287

288288
Remember thought that, in L<DBD::CSV> if table names are used directly as file
289289
names, the case sensitivity depends on the OS e.g. on Windows files named foo,
@@ -373,7 +373,7 @@ are exactly the same:
373373
my $sth = $dbh->prepare(" SELECT * FROM RUN( 'query.sql' ) ");
374374

375375
If the file contains a statement with placeholders, the values for the
376-
placehoders can be passed in the call to $sth->execute() as normal. If the
376+
placeholders can be passed in the call to $sth->execute() as normal. If the
377377
query.sql file contains "SELECT id,name FROM x WHERE id=?", then these
378378
two are the same:
379379

@@ -402,7 +402,7 @@ Syntax obvious
402402

403403
Surrounded by either single quotes; some characters need to
404404
be escaped with a backslash, in particular the backslash itself (\\),
405-
the NUL byte (\0), Line feeds (\n), Carriage return (\r), and the
405+
the NULL byte (\0), Line feeds (\n), Carriage return (\r), and the
406406
quotes (\').
407407

408408
B<Note:> Quoting "Strings" using double quotes are recognized as
@@ -461,7 +461,7 @@ the parser, especially keywords like FROM and WHERE that are central to
461461
parsing the statement.
462462

463463
In the reverse situation, suppose you want to parse some SQL that defines a
464-
column as type BIG_BLOB. Since 'BIG_BLOB' isn't a recognized ANSI data type,
464+
column as type BIG_BLOB. Since 'BIG_BLOB' is not a recognized ANSI data type,
465465
an error will be produced by default. To make the parser treat it as a valid
466466
data type, you do this:
467467

0 commit comments

Comments
 (0)