summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2023-05-16 11:44:56 +1200
committerOlly Betts <olly@survex.com>2023-05-16 11:44:56 +1200
commitc9bcc3954024e2f62fddbcfdc75e45f5c5eac215 (patch)
tree8f44ab95726c59334d63c00c95206daaf471f436 /Doc
parentaf87945aeafedf70b6ea729937b62cdff0b981ce (diff)
downloadswig-c9bcc3954024e2f62fddbcfdc75e45f5c5eac215.tar.gz
Improve docs for Scanner_skip_balanced() return value
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Devel/scanner.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Devel/scanner.html b/Doc/Devel/scanner.html
index d620c3d98..94807ff62 100644
--- a/Doc/Devel/scanner.html
+++ b/Doc/Devel/scanner.html
@@ -103,7 +103,7 @@ Skips to the end of the current line. The text skipped can be obtained using <
</blockquote>
<p>
-<b><tt>void Scanner_skip_balanced(Scanner *s, int startchar, int endchar)</tt></b>
+<b><tt>int Scanner_skip_balanced(Scanner *s, int startchar, int endchar)</tt></b>
<blockquote>
Skips to the end of a block of text denoted by starting and ending characters. For example, <tt>{</tt> and <tt>}</tt>. The
function is smart about how it skips text. String literals and comments are ignored. The function also is aware of nesting. The