diff options
author | unknown <jcole@mugatu.spaceapes.com> | 2002-03-17 05:39:25 -0600 |
---|---|---|
committer | unknown <jcole@mugatu.spaceapes.com> | 2002-03-17 05:39:25 -0600 |
commit | ef38d5c3a9b393abe5276a64e5137a5be025264a (patch) | |
tree | e78cd6f1bd83e0608607e0af34749800cdc52732 /Docs/internals.texi | |
parent | c164811479981c03d1391c9783a4084f8f2f5d63 (diff) | |
download | mariadb-git-ef38d5c3a9b393abe5276a64e5137a5be025264a.tar.gz |
Fixed small bug.
Diffstat (limited to 'Docs/internals.texi')
-rw-r--r-- | Docs/internals.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/internals.texi b/Docs/internals.texi index 5bf5fc35344..8f358982ded 100644 --- a/Docs/internals.texi +++ b/Docs/internals.texi @@ -304,7 +304,7 @@ Put a space after @samp{,} for function arguments Functions return @samp{0} on success, and non-zero on error, so you can do: @example -if(a() || b() || c()) { error("something went wrong"); } +if(a() || b() || c()) @{ error("something went wrong"); @} @end example @item |