Merge pull request #2896 from Nameguy/master

[smalltalk/en] Fix some unclosed comments in the smalltalk documentation
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë 2017-10-10 01:36:01 +03:00 committed by GitHub
commit 7415df0077

View File

@ -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"
```