1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-22 23:05:22 +02:00

Fixing mistranslation in match statement (#416)

This commit is contained in:
rastringer 2023-02-15 17:07:58 +00:00 committed by GitHub
parent 3b7123d21a
commit 747589ae8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6839,7 +6839,7 @@ msgid ""
msgstr ""
" match input {\n"
" 'q' => println!(\"Sair\"),\n"
" 'um' | 's' | 'w' | 'd' => println!(\"Movendo-se\"),\n"
" 'a' | 's' | 'w' | 'd' => println!(\"Movendo-se\"),\n"
" '0'..='9' => println!(\"Number input\"),\n"
" _ => println!(\"Algo mais\"),\n"
" }\n"