We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36044a5 commit 501dd46Copy full SHA for 501dd46
doc/Language/nativecall.pod
@@ -376,7 +376,7 @@ The C<native> trait accepts the library name or the full path.
376
constant LIBMYSQL = 'mysqlclient';
377
constant LIBFOO = '/usr/lib/libfoo.so.1';
378
# and later
379
- sub mysql_affectied_rows( .. ) returns int32 is native(LIBMYSQL);
+ sub mysql_affected_rows( .. ) returns int32 is native(LIBMYSQL);
380
sub bar is native(LIBFOO);
381
382
You can also put an incomplete path like './foo' and NativeCall will automatically put
0 commit comments