diff options
author | ydah <[email protected]> | 2024-01-25 11:36:41 +0900 |
---|---|---|
committer | git <[email protected]> | 2024-01-25 09:58:17 +0000 |
commit | 033411562802d1ec2d8a57dfef480f8e7d346214 (patch) | |
tree | 2499d9ec70bf5f43991765e61728a5979459b2b5 /lib/irb/context.rb | |
parent | 819ae2c2c181b3e27e4ba57b66a7e89f1745ff09 (diff) |
[ruby/irb] Synatx ==> Syntax
https://github.com/ruby/irb/commit/2ffacaa031
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 10dab86179..ac61b765c0 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -178,7 +178,7 @@ module IRB private def build_type_completor if RUBY_ENGINE == 'truffleruby' - # Avoid SynatxError. truffleruby does not support endless method definition yet. + # Avoid SyntaxError. truffleruby does not support endless method definition yet. warn 'TypeCompletor is not supported on TruffleRuby yet' return end |