fix documentation about callbacks in manual
authorTom Henderson <tomh@tomh.org>
Sat, 08 May 2010 14:56:42 -0700
changeset 6292 4e538cf92937
parent 6291 8b3cd8b4d560
child 6293 11a2f62de3ec
fix documentation about callbacks in manual
doc/manual/callbacks.texi
--- a/doc/manual/callbacks.texi	Thu May 06 14:55:16 2010 -0400
+++ b/doc/manual/callbacks.texi	Sat May 08 14:56:42 2010 -0700
@@ -380,8 +380,8 @@
 So in the above example, we have a declared a callback named "one" that will
 eventually hold a function pointer.  The signature of the function that it will
 hold must return double and must support two double arguments.  If one tries 
-to pass a function whose signature does not match the declared callback, the 
-compilation will fail.
+to pass a function whose signature does not match the declared callback, a
+run-time NS_FATAL_ERROR will be raised.
 
 Now, we need to tie together this callback instance and the actual target function
 (CbOne).  Notice above that CbOne has the same function signature types as the