Skip to content

Commit f2f9b59

Browse files
authored
Merge pull request #3264 from Raku/blob-fix
Use blob32, not buf32, in Blob's document
2 parents d67841d + 482e2d0 commit f2f9b59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Type/Blob.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Returns a Blob with all elements in reversed order.
301301
302302
say Blob.new([1, 2, 3]).reverse; # OUTPUT: «Blob:0x<03 02 01>␤»
303303
say blob16.new([2]).reverse; # OUTPUT: «Blob[uint16]:0x<02>␤»
304-
say buf32.new([16, 32]).reverse; # OUTPUT: «Buf[uint32]:0x<20 10>␤»
304+
say blob32.new([16, 32]).reverse; # OUTPUT: «Blob[uint32]:0x<20 10>␤»
305305
306306
=head1 Methods on blob8 only (6.d, 2018.12 and later)
307307

0 commit comments

Comments
 (0)