You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2016/02/26 04:34:36 UTC

[2/5] lucy-clownfish git commit: Minor wordsmithing of docs.

Minor wordsmithing of docs.


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/2c7c9a53
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/2c7c9a53
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/2c7c9a53

Branch: refs/heads/master
Commit: 2c7c9a538b53cb5e15499e43cebfff0433a048fd
Parents: cd4b623
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Thu Feb 25 19:32:04 2016 -0800
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Thu Feb 25 19:32:04 2016 -0800

----------------------------------------------------------------------
 runtime/core/Clownfish/Class.cfh | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/2c7c9a53/runtime/core/Clownfish/Class.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Class.cfh b/runtime/core/Clownfish/Class.cfh
index a5c83ab..bdef4fb 100644
--- a/runtime/core/Clownfish/Class.cfh
+++ b/runtime/core/Clownfish/Class.cfh
@@ -18,9 +18,8 @@ parcel Clownfish;
 
 /** Class.
  *
- * Classes, which are the first element in any Clownfish object, are actually
- * objects themselves.  (Their first element is a Class which describes the
- * behavior of Classes.)
+ * Classes are first-class objects in Clownfish.  Class objects are instances
+ * of Clownfish::Class.
  */
 
 public final class Clownfish::Class inherits Clownfish::Obj {
@@ -130,7 +129,7 @@ public final class Clownfish::Class inherits Clownfish::Obj {
     public nullable Class*
     Get_Parent(Class *self);
 
-    /** Return the number of bytes needed to hold an object the class.
+    /** Return the number of bytes needed to hold an instance of the class.
      */
     public uint32_t
     Get_Obj_Alloc_Size(Class *self);