diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2020-04-16 14:42:07 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 14:42:07 +0530 |
commit | ecca2c38376bb6ac63c148347d6b371ed85bc1b7 (patch) | |
tree | b0558e8eeeb2fd1588b285e412ddfa5808895cf9 | |
parent | 2f81283970ca1f613c81a133908564b4f3e2a413 (diff) | |
parent | 7a782b47fe01c41de047bae3861845b64c867203 (diff) |
Merge pull request #3905 from caminsha/en/crystal_smalltypos
[crystal/en] Fixed typo and reference url
-rw-r--r-- | crystal.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crystal.html.markdown b/crystal.html.markdown index 9fae9da3..ae027a8d 100644 --- a/crystal.html.markdown +++ b/crystal.html.markdown @@ -229,7 +229,7 @@ b #=> 'b' c #=> "c" # Procs represent a function pointer with an optional context (the closure data) -# It is typically created with a proc litteral +# It is typically created with a proc literal proc = ->(x : Int32) { x.to_s } proc.class # Proc(Int32, String) # Or using the new method @@ -551,4 +551,4 @@ ex #=> "ex2" ## Additional resources -- [Official Documentation](http://crystal-lang.org/) +- [Official Documentation](https://crystal-lang.org/) |