Skip to content

Commit 826a758

Browse files
author
Cédric Vincent
committed
Fix two typos.
1 parent 20f1ec5 commit 826a758

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/Language/nativecall.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ variables -- can be accessed using C<cglobal>. For example:
297297
298298
my $var := cglobal('libc.so.6', 'errno', int)
299299
300-
This code binds to C<$var> a new L</type/Proxy|Proxy> object that
300+
This code binds to C<$var> a new L<Proxy|/type/Proxy> object that
301301
redirects all its accesses to the integer variable named "errno" as
302302
exported by the "libc.so.6" library.
303303

lib/Type/Proxy.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class Proxy { ... }
88
99
A Proxy is an object that allows you to execute whenever a value is retrieved
10-
from a contaner (C<FETCH>) or when it is set (C<STORE>).
10+
from a container (C<FETCH>) or when it is set (C<STORE>).
1111
1212
To create a container that returns twice of what was stored in it, you do
1313
something like this:

0 commit comments

Comments
 (0)