Repository: lucy-clownfish
Updated Branches:
  refs/heads/master b9f22d149 -> ac9fc2bb5


Fix minor nits.

* Not all host bindings other than C support default values.
* Formatting and grammar nits.


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

Branch: refs/heads/master
Commit: cd4b623bbf3389fb1f2375c5889b6366f2af0d92
Parents: b9f22d1
Author: Marvin Humphrey <[email protected]>
Authored: Thu Feb 25 19:27:34 2016 -0800
Committer: Marvin Humphrey <[email protected]>
Committed: Thu Feb 25 19:27:34 2016 -0800

----------------------------------------------------------------------
 runtime/core/Clownfish/Docs/WritingClasses.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/cd4b623b/runtime/core/Clownfish/Docs/WritingClasses.md
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Docs/WritingClasses.md 
b/runtime/core/Clownfish/Docs/WritingClasses.md
index 5e79788..bbd4f6d 100644
--- a/runtime/core/Clownfish/Docs/WritingClasses.md
+++ b/runtime/core/Clownfish/Docs/WritingClasses.md
@@ -132,13 +132,13 @@ This will generate:
 
 ### Class exposure
 
-API documentation will only be generated for classes with public exposure.
+API documentation will only be generated for classes with `public` exposure.
 
 ### Inert classes
 
 Inert classes must contain only inert variables or inert functions, that is,
 neither instance variables nor methods. They must not inherit from another
-class or be inherited from. They're essentially nothing more than a
+class nor be inherited from. They're essentially nothing more than a
 namespace for functions and global variables.
 
 ### Final classes
@@ -240,7 +240,7 @@ Example using short names:
 
 ### Function exposure
 
-API documentation will only be generated for functions with public exposure.
+API documentation will only be generated for functions with `public` exposure.
 
 ### Inert functions
 
@@ -405,7 +405,7 @@ This is typically used in container classes like Vector:
 
 Default parameter values can be given as integer, float, or string literals.
 The values `true`, `false`, and `NULL` are also supported. The default
-values are only used by the host language bindings. They're not supported
+values are only used by certain host language bindings. They're not supported
 when calling a function from C.
 
 ## C blocks

Reply via email to