diff options
Diffstat (limited to 'stdlib/callback.mli')
-rw-r--r-- | stdlib/callback.mli | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/callback.mli b/stdlib/callback.mli index dfb31617a..ca5f1f073 100644 --- a/stdlib/callback.mli +++ b/stdlib/callback.mli @@ -13,11 +13,11 @@ (* $Id$ *) -(** Registering Caml values with the C runtime. +(** Registering OCaml values with the C runtime. - This module allows Caml values to be registered with the C runtime + This module allows OCaml values to be registered with the C runtime under a symbolic name, so that C code can later call back registered - Caml functions, or raise registered Caml exceptions. + OCaml functions, or raise registered OCaml exceptions. *) val register : string -> 'a -> unit |