summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd J <mohawk2@users.noreply.github.com>2018-03-20 15:00:09 +0000
committerEd J <mohawk2@users.noreply.github.com>2018-03-20 15:02:45 +0000
commitdb0a2063e0f77cb8f2ee565c2ec11b075d0f2347 (patch)
treeabe91ffd337b4eedf123ecc957a80accb27ee41e
parentc64996dd3ceef6787934b0a82d5edc3d406039dc (diff)
apply Debian spelling patch
-rw-r--r--lib/Inline/Java.pod2
-rw-r--r--lib/Inline/Java/Callback.pod4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Inline/Java.pod b/lib/Inline/Java.pod
index 6fbfc7f..e9ed010 100644
--- a/lib/Inline/Java.pod
+++ b/lib/Inline/Java.pod
@@ -1038,7 +1038,7 @@ Here is an example of how to use C<Inline::Java> under mod_perl:
See USING Inline::Java IN A CGI for more details.
If you are using L<ModPerl::Registry>, make sure to use the C<PACKAGE>
-configuration option to specifiy the package in which C<Inline::Java>
+configuration option to specify the package in which C<Inline::Java>
should bind the Java code, since L<ModPerl::Registry> will place your
code in a package with a unpredictable name.
diff --git a/lib/Inline/Java/Callback.pod b/lib/Inline/Java/Callback.pod
index 05b2e43..d46627f 100644
--- a/lib/Inline/Java/Callback.pod
+++ b/lib/Inline/Java/Callback.pod
@@ -338,7 +338,7 @@ example:
$b->ProcessNextCallback() ;
}
else {
- # A timeout has occured after, in this case, 5 secs.
+ # A timeout has occurred after, in this case, 5 secs.
print "5 seconds have passed, still waiting for callback...\n" ;
# Maybe do some other stuff
}
@@ -361,7 +361,7 @@ then be called with a float timeout value (-1 means wait forever, 0 means return
immediately). The WaitForCallback method can return:
rc > 0, indicating that rc callbacks are waiting to be processed
- rc == 0, indicating that a timeout has occured and no callbacks are waiting
+ rc == 0, indicating that a timeout has occurred and no callbacks are waiting
rc == -1, indicating that the callback stream has been closed
The callback stream can be closed by calling CloseCallbackStream, which works