1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-04 07:24:22 +02:00

Fix typo: patten -> pattern (#430)

This commit is contained in:
Jiyong Park 2023-02-17 18:34:35 +09:00 committed by GitHub
parent eb57ba9e51
commit 92d00f2fd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -6346,7 +6346,7 @@ msgid ""
"<details>\n"
" \n"
"Key Points:\n"
"* You might point out how some specific characters are being used when in a patten\n"
"* You might point out how some specific characters are being used when in a pattern\n"
" * `|` as an `or`\n"
" * `..` can expand as much as it needs to be\n"
" * `1..=5` represents an inclusive range\n"

View File

@ -5959,7 +5959,7 @@ msgid ""
"<details>\n"
" \n"
"Key Points:\n"
"* You might point out how some specific characters are being used when in a patten\n"
"* You might point out how some specific characters are being used when in a pattern\n"
" * `|` as an `or`\n"
" * `..` can expand as much as it needs to be\n"
" * `1..=5` represents an inclusive range\n"

View File

@ -6855,7 +6855,7 @@ msgid ""
"<details>\n"
" \n"
"Key Points:\n"
"* You might point out how some specific characters are being used when in a patten\n"
"* You might point out how some specific characters are being used when in a pattern\n"
" * `|` as an `or`\n"
" * `..` can expand as much as it needs to be\n"
" * `1..=5` represents an inclusive range\n"
@ -6871,7 +6871,7 @@ msgstr ""
"<details>\n"
" \n"
"Points chave:\n"
"* Você pode apontar como alguns caracteres específicos estão sendo usados quando em um patten\n"
"* Você pode apontar como alguns caracteres específicos estão sendo usados quando em um padrão\n"
" * `|` como um `ou`\n"
" * `..` pode expandir o quanto for necessário\n"
" * `1..=5` representa um intervalo inclusivo\n"

View File

@ -23,7 +23,7 @@ The `_` pattern is a wildcard pattern which matches any value.
<details>
Key Points:
* You might point out how some specific characters are being used when in a patten
* You might point out how some specific characters are being used when in a pattern
* `|` as an `or`
* `..` can expand as much as it needs to be
* `1..=5` represents an inclusive range