From d07e6c7bdd81a8d6bde1ca4d1a8bfff332908484 Mon Sep 17 00:00:00 2001 From: "Will \"Coke\" Coleda" Date: Sat, 2 Sep 2017 15:01:40 -0400 Subject: [PATCH] avoid overeager "this is a method" example test --- doc/Language/nativecall.pod6 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/Language/nativecall.pod6 b/doc/Language/nativecall.pod6 index 0ead2a185..e3bc83a05 100644 --- a/doc/Language/nativecall.pod6 +++ b/doc/Language/nativecall.pod6 @@ -577,6 +577,7 @@ Prepare your system along these lines before trying out the examples: Here is an example of a Windows API call: +=begin code :method use NativeCall; sub MessageBoxA(int32, Str, Str, int32) @@ -585,5 +586,6 @@ Here is an example of a Windows API call: { * } MessageBoxA(0, "We have NativeCall", "ohai", 64); +=end code =end pod