From d0ecb9f488f850d6c33b6d9eb8975b92402101e4 Mon Sep 17 00:00:00 2001 From: Nameguy Date: Sun, 8 Oct 2017 00:56:41 -0400 Subject: Update smalltalk.html.markdown --- smalltalk.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index fd40afe9..f490dd6b 100644 --- a/smalltalk.html.markdown +++ b/smalltalk.html.markdown @@ -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" ``` -- cgit v1.2.3 From 0d85a0371c0254f0b8dcdb281fe456af05e422ed Mon Sep 17 00:00:00 2001 From: Nameguy Date: Sun, 8 Oct 2017 00:57:51 -0400 Subject: Update smalltalk.html.markdown --- smalltalk.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index f490dd6b..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" ``` -- cgit v1.2.3