Skip to content

Commit 9e46c5c

Browse files
author
Jan-Olof Hendig
committed
Fixed a few broken links. AlexDaniel++
1 parent 5c766b7 commit 9e46c5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/Language/performance.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ One of the most reliable techniques for making large performance improvements,
150150
regardless of language or compiler, is to pick a more appropriate algorithm.
151151
152152
A classic example is
153-
L<Boyer-Moore|https://en.wikipedia.org/wikiBoyer%E2%80%93Moore_string_search_algorithm>.
153+
L<Boyer-Moore|https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_search_algorithm>.
154154
To match a small string in a large string, one obvious way to do it is to
155155
compare the first character of the two strings and then, if they match, compare
156156
the second characters, or, if they don't match, compare the first character of

doc/Type/Array.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ Returns the default value of the invocant, i.e. the value which is returned
252252
when trying to access an element in the C<Array> which has not been
253253
previously initialized or when accessing an element which has explicitly
254254
been set to C<Nil>. Unless the C<Array> is declared as having a default
255-
value by using the L<is default|/routine/is default> trait the method returns
255+
value by using the L<is default|/routine/is default (Variable)> trait the method returns
256256
the type object C<(Any)>.
257257
258258
my @a1 = 1, "two", 2.718;

doc/Type/Hash.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ Defined as:
564564
Returns the default value of the invocant, i.e. the value which is returned
565565
when a non existing key is used to access an element in the C<Hash>.
566566
Unless the C<Hash> is declared as having a default value by using the
567-
L<is default|/routine/is default> trait the method returns the type object
567+
L<is default|/routine/is default (Variable)> trait the method returns the type object
568568
C<(Any)>.
569569
570570
my %h1 = 'apples' => 3, 'oranges' => 7;

0 commit comments

Comments
 (0)