]> git.eshelyaron.com Git - emacs.git/commitdiff
; ruby.rb: Fix pattern matching syntax and extend the example
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 8 Jan 2023 22:57:36 +0000 (00:57 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 8 Jan 2023 22:57:36 +0000 (00:57 +0200)
test/lisp/progmodes/ruby-mode-resources/ruby.rb

index bfae948b2594f18e63ca0c88cb21f7edc17bb093..3f0dfdf68ba842757d72045408e588be27c31843 100644 (file)
@@ -513,7 +513,7 @@ foo bar, {
 case translation
 in ['th', orig_text, 'en', trans_text]
   puts "English translation: #{orig_text} => #{trans_text}"
-in {'th' => orig_text, 'ja' => trans_text}
+in {th: orig_text, ja: trans_text} => whole
   puts "Japanese translation: #{orig_text} => #{trans_text}"
 end