diff options
author | caminsha <c.96marco@hotmail.com> | 2020-04-12 18:40:03 +0200 |
---|---|---|
committer | caminsha <c.96marco@hotmail.com> | 2020-04-12 18:40:03 +0200 |
commit | e13f05c9cf3e8a96bcc07658a791067a9addfc68 (patch) | |
tree | 28bee1a9134df6c2f939bbe86314887f64db2d3b /crystal.html.markdown | |
parent | 2f81283970ca1f613c81a133908564b4f3e2a413 (diff) |
Fixed a small typo.
litteral => literal
Diffstat (limited to 'crystal.html.markdown')
-rw-r--r-- | crystal.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crystal.html.markdown b/crystal.html.markdown index 9fae9da3..e8952032 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 |