diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2002-06-14 06:59:20 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2002-06-14 06:59:20 +0000 |
commit | 8388bbe7d23fc797f1360036b808d510cf01fdce (patch) | |
tree | 54b00d2cad32ed1b251f317a16709b571d421795 | |
parent | 4a9e0cb9045d07bbb4e918f63e57889e0f8488d8 (diff) |
Oo.oid -> Oo.id
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4924 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/oo.ml | 2 | ||||
-rw-r--r-- | stdlib/oo.mli | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/oo.ml b/stdlib/oo.ml index 7406ed7c8..102d1cde6 100644 --- a/stdlib/oo.ml +++ b/stdlib/oo.ml @@ -14,4 +14,4 @@ (* $Id$ *) let copy = CamlinternalOO.copy -external oid : < .. > -> int = "%field1" +external id : < .. > -> int = "%field1" diff --git a/stdlib/oo.mli b/stdlib/oo.mli index 98800a70b..502def099 100644 --- a/stdlib/oo.mli +++ b/stdlib/oo.mli @@ -19,6 +19,6 @@ val copy : (< .. > as 'a) -> 'a (** [Oo.copy o] returns a copy of object [o], that is a fresh object with the same methods and instance variables as [o] *) -external oid : < .. > -> int = "%field1" +external id : < .. > -> int = "%field1" (** Return an integer identifying this object, unique for the current execution of the program. *) |