Skip to content

Commit 5f7a089

Browse files
authored
Merge pull request #1333 from antquinonez/dupes
Remove dupe consecutive words
2 parents 5da4951 + eb8daf9 commit 5f7a089

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

doc/Language/5to6-perlop.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ respectively.
6666
Unary C<~> is the string context operator in Perl 6, so use prefix C<+^>
6767
for bitwise integer negation. Assumes two's complement.
6868
69-
C<+> I<does> have an effect in Perl 6, coercing its argument to to the
69+
C<+> I<does> have an effect in Perl 6, coercing its argument to the
7070
Numeric type.
7171
7272
Unary <\> is no more. If you really want to take a reference to an existing

doc/Language/experimental.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ example, like this:
1414
1515
Following is a list of current experimental features and a short
1616
description of each feature's purpose or a link to more details about
17-
its use. (Note: Features marked marked "[TBD]" are to be defined
17+
its use. (Note: Features marked "[TBD]" are to be defined
1818
later.)
1919
2020
=comment The following should be a table but formatting in tables is

doc/Language/grammar_tutorial.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ be everything else left in the string.
135135
136136
Next, we'll want to arrange these matching tokens within the larger context of
137137
the URI. That's what the TOP method allows us to do. We'll add the TOP method
138-
and place the names of our tokens within it, together with the rest of of the
138+
and place the names of our tokens within it, together with the rest of the
139139
patterns that makes up the overall pattern. Note how we're building a larger
140140
regex from our named regexes.
141141

doc/Language/nativecall.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ C<union> definition; using the C<CUnion> representation:
323323
324324
CStructs and CUnions can be in turn referenced by – or embedded into
325325
-- a surrounding CStruct and CUnion. To say the former we use C<has>
326-
as usual, and to do the latter we use use the C<HAS> declarator
326+
as usual, and to do the latter we use the C<HAS> declarator
327327
instead:
328328
329329
class MyStruct is repr('CStruct') {

doc/Language/operators.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ surrounding whitespace (before and/or after) to distinguish them.
893893
Calls the right-side method on the value in the left-side container,
894894
replacing the resulting value in the left-side container.
895895
896-
In most cases this behaves identically to the the postfix mutator, but the
896+
In most cases this behaves identically to the postfix mutator, but the
897897
precedence is lower so:
898898
899899
=for code :skip-test
@@ -1534,7 +1534,7 @@ equivalent:
15341534
say A.new(a => 5) eqv A.new(a => 5); # OUTPUT: «True␤»
15351535
15361536
Although the above example works as intended the C<eqv> code has to fall back
1537-
to a slower code path in in order to do its job. One way to avoid this is to
1537+
to a slower code path in order to do its job. One way to avoid this is to
15381538
implement an appropriate infix C<eqv> operator:
15391539
15401540
my class A {

doc/Language/py-nutshell.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ Here's a python context manager that prints the strings
660660
print 'world'
661661
662662
For enter and exit events, passing a block as
663-
as an argument would be one option:
663+
an argument would be one option:
664664
665665
sub hello(Block $b) {
666666
say 'hello';

0 commit comments

Comments
 (0)