From 32a0e2c3c74ec41320ea4d43b0458d0374ab0f8f Mon Sep 17 00:00:00 2001 From: stasinos Date: Wed, 18 Jul 2001 14:51:10 +0000 Subject: [PATCH] typoes git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@131 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- docs/yap.tex | 4 ++-- include/c_interface.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/yap.tex b/docs/yap.tex index 95d489539..5e275b250 100644 --- a/docs/yap.tex +++ b/docs/yap.tex @@ -3778,7 +3778,7 @@ defaults to 1). @item '~Nr' The next argument must be an integer, and @var{N} is interpreted as a -radix, such that @code{2 <= N <= 3} (the default is 8). +radix, such that @code{2 <= N <= 36} (the default is 8). @example ?- format("~2r, 0x~16r, ~r", @@ -3791,7 +3791,7 @@ Note that the letters @code{a-z} denote digits larger than 9. @item '~NR' Similar to '~NR'. The next argument must be an integer, and @var{N} is -interpreted as a radix, such that @code{2 <= N <= 3} (the default is 8). +interpreted as a radix, such that @code{2 <= N <= 36} (the default is 8). @example ?- format("~2r, 0x~16r, ~r", diff --git a/include/c_interface.h b/include/c_interface.h index 260922627..ee217d1b8 100644 --- a/include/c_interface.h +++ b/include/c_interface.h @@ -432,7 +432,7 @@ static Term (YapIRead)() = YapRead; #define YapRead(F) (*YapIRead)(F) #endif -/* void YapWrite(Term,int (*)(void),int) */ +/* void YapWrite(Term,void (*)(int),int) */ extern X_API void PROTO(YapWrite,(Term,void (*)(int),int)); #ifdef IndirectCalls static void (YapIWrite)() = YapWrite;