Skip to content

Commit 2d99ea2

Browse files
author
Brock Wilcox
committed
Remove some 'seems' usage
1 parent 763a3a5 commit 2d99ea2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

doc/Language/5to6-perlop.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ I<actually> do.
5353
5454
Works as you would expect. The caveat in Perl 5's perlop about C<**>
5555
binding more tightly than unary minus (i. e. "-2**4" evaluates as "-(2**4)"
56-
rather than "(-2)**4)") seems to hold true for Perl 6.
56+
rather than "(-2)**4)") is also true for Perl 6.
5757
5858
=head2 Symbolic Unary Operators
5959

doc/Language/5to6-perlvar.pod6

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ variables.
2525
2626
=item $_
2727
28-
2928
Thankfully, C<$_> is the general default variable as in Perl 5. The
3029
main difference in Perl 6 seems to be that you can now call methods on
3130
it. For instance, Perl 5's C<say $_> can be rendered in Perl 6 as
@@ -195,11 +194,11 @@ of all loaded modules (compilation units) like so:
195194
196195
=item $^I
197196
198-
S28 suggests $*INPLACE_EDIT, but it does not yet seem to exist.
197+
S28 suggests $*INPLACE_EDIT, but it does not yet exist.
199198
200199
=item $^M
201200
202-
S28 suggests $*EMERGENCY_MEMORY, but it does not yet seem to exist.
201+
S28 suggests $*EMERGENCY_MEMORY, but it does not yet exist.
203202
204203
=item $OSNAME
205204
@@ -242,7 +241,7 @@ As with C<$]> this has been replaced with C<$*PERL.version>.
242241
243242
=item ${^WIN32_SLOPPY_STAT}
244243
245-
There does not seem to be any analog to this in Perl 6.
244+
There is no analog to this in Perl 6.
246245
247246
=item $EXECUTABLE_NAME
248247
@@ -275,7 +274,7 @@ to C<$/[0]>, C<$1> is equivalent to C<$/[1]>, etc.
275274
276275
C<$/> now contains the match object, so the Perl 5 behavior of C<$&> can
277276
be obtained by stringifying it, i. e. C<~$/>. C<$/.Str> also should
278-
work, but C<~$/> seems to be the consensus preference.
277+
work, but C<~$/> is the currently more common idiom.
279278
280279
=item ${^MATCH}
281280

doc/Type/IO/Notification.pod6

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ IO::Notification.watch-path($?FILE).act( -> $change {
3333
await $finish;
3434
3535
The type of the change is very much dependent both on the platform and on
36-
specific system calls that were used initiate the change. At this point in
37-
time, relying on them seems to be a bad idea.
36+
specific system calls that were used initiate the change. At this point in time
37+
you should not rely on the type of change in general, and test your particular
38+
situaton.
3839
3940
=head1 Methods
4041

0 commit comments

Comments
 (0)