mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix typo in code doc of proc.c
Insure has a different meaning than ensure and we mean the latter in this case. *Ensure* is to do or have what is necessary for success. Example: These blankets ensure that you’ll be warm enough. *Insure* is to cover with an insurance policy. Example: I will insure my home with additional fire and flood policies. Patch by: Dimitris Zorbas <zorbash@skroutz.gr> (@Zorbash) Signed-off-by: Akira Matsuda <ronnie@dio.jp> closes #1352 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
465381dd32
commit
a01c388465
1 changed files with 1 additions and 1 deletions
2
proc.c
2
proc.c
|
@ -235,7 +235,7 @@ proc_clone(VALUE self)
|
|||
* C.new.e(1,2) #=> ArgumentError
|
||||
* C.new.method(:e).to_proc.lambda? #=> true
|
||||
*
|
||||
* This exception insures that methods never have tricks
|
||||
* This exception ensures that methods never have tricks
|
||||
* and makes it easy to have wrappers to define methods that behave as usual.
|
||||
*
|
||||
* class C
|
||||
|
|
Loading…
Reference in a new issue