mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-06 06:47:54 +02:00
Merge pull request #2896 from Nameguy/master
[smalltalk/en] Fix some unclosed comments in the smalltalk documentation
This commit is contained in:
committed by
GitHub
commit
7415df0077
@@ -186,7 +186,7 @@ x := Float pi. "pi"
|
|||||||
x := Float e. "exp constant"
|
x := Float e. "exp constant"
|
||||||
x := Float infinity. "infinity"
|
x := Float infinity. "infinity"
|
||||||
x := Float nan. "not-a-number"
|
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"
|
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 isPointers. "true if index instance vars contain objects"
|
||||||
b := String isBits. "true if index instance vars contain bytes/words"
|
b := String isBits. "true if index instance vars contain bytes/words"
|
||||||
b := String isBytes. "true if index instance vars contain bytes"
|
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"
|
Object withAllSubclasses size. "get total number of class entries"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user