diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-10-10 01:36:01 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-10 01:36:01 +0300 |
commit | 7415df00770a39509c23e08c79345c53eefe4b8a (patch) | |
tree | 7cdd5a999ed8d219b595b67eb44967246f9d23ef /smalltalk.html.markdown | |
parent | 3c37015d2a8230983db3d6a608ec873f5e1b5579 (diff) | |
parent | 0d85a0371c0254f0b8dcdb281fe456af05e422ed (diff) |
Merge pull request #2896 from Nameguy/master
[smalltalk/en] Fix some unclosed comments in the smalltalk documentation
Diffstat (limited to 'smalltalk.html.markdown')
-rw-r--r-- | smalltalk.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index fd40afe9..a253df55 100644 --- a/smalltalk.html.markdown +++ b/smalltalk.html.markdown @@ -186,7 +186,7 @@ x := Float pi. "pi" x := Float e. "exp constant" x := Float infinity. "infinity" x := Float nan. "not-a-number" -x := Random new next; yourself. x next. "random number stream (0.0 to 1.0) +x := Random new next; yourself. x next. "random number stream (0.0 to 1.0)" x := 100 atRandom. "quick random number" ``` @@ -904,7 +904,7 @@ b := String isVariable. "true if has indexed b := String isPointers. "true if index instance vars contain objects" b := String isBits. "true if index instance vars contain bytes/words" b := String isBytes. "true if index instance vars contain bytes" -b := String isWords. true if index instance vars contain words" +b := String isWords. "true if index instance vars contain words" Object withAllSubclasses size. "get total number of class entries" ``` |