Skip to content

Commit 781f351

Browse files
committed
Remove smile in native call array documentation.
1 parent f1207d9 commit 781f351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/nativecall.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ RenderBarChart('Weights (kg)', 3, @titles, @values);
239239
Note that binding was used to C<@titles>, I<not> assignment! If you assign, you
240240
are putting the values into a Perl 6 array, and it will not work out. If this
241241
all freaks you out, forget you ever knew anything about the C<@> sigil and just
242-
use C<$> all the way when using NativeCall. :-)
242+
use C<$> all the way when using NativeCall.
243243
244244
use NativeCall;
245245
my $titles = CArray[Str].new;
@@ -281,7 +281,7 @@ something in the library API tells you this (for example, you know that when
281281
you see a null element, you should read no further). Note that NativeCall can
282282
offer you no protection whatsoever here - do the wrong thing, and you will get a
283283
segfault or cause memory corruption. This isn't a shortcoming of NativeCall, it's
284-
the way the big bad native world works. Scared? Here, have a hug. Good luck! :-)
284+
the way the big bad native world works. Scared? Here, have a hug. Good luck!
285285
286286
=head1 Structs
287287

0 commit comments

Comments
 (0)