XFORM_END_SKIP -> XFORM_SKIP_PROC in example.

The XFORM_SKIP_PROC example incorrectly used XFORM_END_SKIP,
it should have used XFORM_SKIP_PROC instead.
This commit is contained in:
Leif Andersen 2014-10-28 16:19:30 -04:00 committed by Asumu Takikawa
parent e18f8e904f
commit 6087d11a36

View File

@ -584,7 +584,7 @@ The following macros can be used (with care!) to navigate
Example:
@verbatim[#:indent 2]{
int foo(int c, ...) XFORM_END_SKIP {
int foo(int c, ...) XFORM_SKIP_PROC {
}
}}