diff options
| author | David Hsieh <davidhsiehlo@gmail.com> | 2016-03-11 08:39:26 -0600 | 
|---|---|---|
| committer | David Hsieh <davidhsiehlo@gmail.com> | 2016-03-11 08:39:26 -0600 | 
| commit | 8d1e2e31ef9c62e2833ccb83cde78caef668f044 (patch) | |
| tree | 1cca5af13a146c0a36ef760b6264d18875290ec0 /smalltalk.html.markdown | |
| parent | 51c2f7ce28caf1cc654bcafc4063f3012cc2f0c3 (diff) | |
| parent | 6e38442b857a9d8178b6ce6713b96c52bf4426eb (diff) | |
Merge conflict r-spanish
Diffstat (limited to 'smalltalk.html.markdown')
| -rw-r--r-- | smalltalk.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index 3b388505..2c17b753 100644 --- a/smalltalk.html.markdown +++ b/smalltalk.html.markdown @@ -37,7 +37,7 @@ Feedback highly appreciated! Reach me at [@jigyasa_grover](https://twitter.com/j  `"Comments are enclosed in quotes"` -`"Period (.) is the statement seperator"` +`"Period (.) is the statement separator"`  ## Transcript:  ``` @@ -305,7 +305,7 @@ result := (switch at: $B) value.  x := 4. y := 1.  [x > 0] whileTrue: [x := x - 1. y := y * 2].                "while true loop"  [x >= 4] whileFalse: [x := x + 1. y := y * 2].              "while false loop" -x timesRepeat: [y := y * 2].                                "times repear loop (i := 1 to x)" +x timesRepeat: [y := y * 2].                                "times repeat loop (i := 1 to x)"  1 to: x do: [:a | y := y * 2].                              "for loop"  1 to: x by: 2 do: [:a | y := y / 2].                        "for loop with specified increment"  #(5 4 3) do: [:a | x := x + a].                             "iterate over array elements" @@ -320,7 +320,7 @@ y := x isUppercase.                                         "test if upper case"  y := x isLetter.                                            "test if letter"  y := x isDigit.                                             "test if digit"  y := x isAlphaNumeric.                                      "test if alphanumeric" -y := x isSeparator.                                         "test if seperator char" +y := x isSeparator.                                         "test if separator char"  y := x isVowel.                                             "test if vowel"  y := x digitValue.                                          "convert to numeric digit value"  y := x asLowercase.                                         "convert to lower case"  | 
