Skip to content

Commit 703f0d7

Browse files
committed
remove trailing ws
1 parent 20c8dc4 commit 703f0d7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Type/Buf.pod6

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Appends at the end of the buffer
8181
=for code :skip-test
8282
$bú.append( @φ[5..10] );
8383
say $bú.perl; # OUTPUT: «Buf.new(1,1,2,3,5,8,13,21,34,55,89)»
84-
84+
8585
=head2 method prepend
8686
8787
method prepend( $elems )
@@ -91,7 +91,7 @@ Adds elements at the beginning of the buffer
9191
=for code :skip-test
9292
$bú.prepend( 0 );
9393
say $bú.perl; # OUTPUT: «Buf.new(0,1,1,2,3,5,8,13,21,34,55,89)»
94-
94+
9595
=head2 method shift
9696
9797
method shift()
@@ -101,7 +101,7 @@ Takes out the first element of the buffer
101101
=for code :skip-test
102102
$bú.shift();
103103
say $bú.perl; # OUTPUT: «Buf.new(1,1,2,3,5,8,13,21,34,55,89)»
104-
104+
105105
=head2 method unshift
106106
107107
method unshift()
@@ -111,7 +111,7 @@ Adds elements at the beginning of the buffer
111111
=for code :skip-test
112112
$bú.unshift( 0 );
113113
say $bú.perl; # OUTPUT: «Buf.new(0,1,1,2,3,5,8,13,21,34,55,89)»
114-
114+
115115
=head2 method splice
116116
117117
method splice( Buf:D: $start = 0, $elems?, *@replacement --> Buf)
@@ -121,7 +121,7 @@ Substitutes elements of the buffer by other elements
121121
=for code :skip-test
122122
$bú.splice: 0, 3, <3 2 1>;
123123
say $bú.perl; # OUTPUT: «Buf.new(3,2,1,2,3,5,8,13,21,34,55,89)»
124-
124+
125125
=end pod
126126

127127
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

0 commit comments

Comments
 (0)