Skip to content

Commit f5cb7ae

Browse files
committed
Purge trailing whitespace
1 parent 69e5dbb commit f5cb7ae

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

lib/Language/control.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
=head2 blocks
88
9-
Like many languages, Perl6 uses C<blocks> delimited by C<{> and C<}>
9+
Like many languages, Perl6 uses C<blocks> delimited by C<{> and C<}>
1010
to compartmentalize code. When a block stands alone as a statement,
1111
it will be entered immediately after the statement before it finishes,
1212
and the statements inside it will be executed. Otherwise, a block
@@ -134,7 +134,7 @@ example because it is not caught up to this part of the design yet.
134134
The C<if> does not change the topic (C<$_>) by default. In order to access
135135
the value which the conditional expression produced, you have to ask
136136
for it more strongly:
137-
137+
138138
$_ = 1; if 42 { $_.say } ; # says "1"
139139
$_ = 1; if 42 -> $_ { $_.say } ; # says "42"
140140
$_ = 1; if 42 -> $a { $_.say; $a.say } ; # says "1" then says "42"
@@ -162,8 +162,8 @@ if all the conditions before it were false, and only the block next to
162162
the first true condition will be run. You can end with an C<elsif>
163163
instead of an C<else> if you want.
164164
165-
if 0 { say "no" } elsif False { say "NO" } else { say "yes" } # says "yes"
166-
if 0 { say "no" } elsif True { say "YES" } else { say "yes" } # says "YES"
165+
if 0 { say "no" } elsif False { say "NO" } else { say "yes" } # says "yes"
166+
if 0 { say "no" } elsif True { say "YES" } else { say "yes" } # says "YES"
167167
168168
if 0 { say "no" } elsif False { say "NO" } # does not say anything
169169

lib/Language/nativecall.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ by writing a class like this:
103103
# Here are the actual NativeCall functions.
104104
sub Foo_init() returns FooHandle is native("libfoo") { * }
105105
sub Foo_free(FooHandle) is native("libfoo") { * }
106-
106+
107107
# Here are the methods we use to expose it to the outside world.
108108
method new() { Foo_init() }
109109
method free() { Foo_free(self) }

lib/Language/syntax.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ they don't carry any semantic; the following literals all evaluate to the same
255255
number:
256256
257257
1000000
258-
1_000_000
258+
1_000_000
259259
10_0000
260260
10_00_00
261261
@@ -354,7 +354,7 @@ TODO
354354
355355
TODO: link to language/operators
356356
357-
=head1
357+
=head1
358358
359359
=end comment
360360

lib/Language/unicode_entry.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Thus constructs such as these are now possible:
8686
=head2 Set/bag operators
8787
8888
The L<set/bag operators|/language/setbagmix#Set%2FBag_Operators> operators all
89-
have set-theory-related symbols, the unicode code points and their ascii
89+
have set-theory-related symbols, the unicode code points and their ascii
9090
equivalents are listed below. To compose such a character, it is merely
9191
necessary to enter the character composition chord (e.g. C<Ctrl-V u> in Vim;
9292
C<Ctrl-Shift-u> in Bash) then the unicode code point hexadecimal number.

lib/Language/variables.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -715,13 +715,13 @@ X<$*CWD|variable.$*CWD>
715715
to the username only if treated as a string and the
716716
numeric user id if treated as a number.
717717
==
718-
$*GROUP The primary group of the user who is running the program.
719-
It is an object that evaluates to "groupname (gid)".
720-
It will evaluate to the groupname only if treated as a
718+
$*GROUP The primary group of the user who is running the program.
719+
It is an object that evaluates to "groupname (gid)".
720+
It will evaluate to the groupname only if treated as a
721721
string and the numeric group id if treated as a number.
722722
==
723723
$*HOME An L<IO::Path> object representing the "home directory"
724-
of the user that is running the program. If the
724+
of the user that is running the program. If the
725725
"home directory" cannot be determined it will be L<Nil>
726726
727727
=end pod

0 commit comments

Comments
 (0)