class.c: remove methID from the example and codespell dict

This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-06-09 17:56:21 +09:00
parent b6181ae58a
commit a867fb0703
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -11,7 +11,6 @@ fo
hel
hist
ist
methid
nd
quitt
remore
+2 -2
View File
@@ -2905,8 +2905,8 @@ mrb_method_missing(mrb_state *mrb, mrb_sym name, mrb_value self, mrb_value args)
* def romanToInt(str)
* # ...
* end
* def method_missing(methId)
* str = methId.to_s
* def method_missing(sym)
* str = sym.to_s
* romanToInt(str)
* end
* end