Sophrinix / TryRuby

Try Ruby is a interactive shell that quickly and whimsically teaches the Ruby programming language. Originally _why's idea, it has been recreated from the ground up by Rubyists who have a passion for Ruby and for teaching their fellow (wo)man how to program.
tryruby.org
345 stars 80 forks source link

"Abyssmal" #129

Open ch71 opened 13 years ago

ch71 commented 13 years ago

On the "try ruby! (in your browser)" site, whoever made it spelled "abysmal" as "abyssmal." (Just like I did when I was in middle school, losing the spelling bee T_T.) Anyway, just to let you know, :abyssmal should instead be :abysmal.

arbrown commented 12 years ago

I noticed this as well... It's a quick fix:

s/\babyssmal\b/abysmal

That's valid in perl... I don't know regex particulars in ruby... yet.