mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Merge pull request #2896 from Nameguy/master
[smalltalk/en] Fix some unclosed comments in the smalltalk documentation
This commit is contained in:
commit
7415df0077
@ -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"
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user