1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47:44 +00:00

Everywhere: codepoint => code point

This commit is contained in:
Andreas Kling 2021-06-01 10:01:11 +02:00
parent a8ae8b24de
commit 12a42edd13
18 changed files with 240 additions and 240 deletions

View file

@ -11,7 +11,7 @@ if not test "$(echo {a,b,,})" = "a b " { fail normal brace expansion with two
if not test "$(echo {a..c})" = "a b c" { fail range brace expansion, alpha }
if not test "$(echo {0..3})" = "0 1 2 3" { fail range brace expansion, number }
if not test "$(echo {😂..😄})" = "😂 😃 😄" { fail range brace expansion, unicode codepoint }
if not test "$(echo {😂..😄})" = "😂 😃 😄" { fail range brace expansion, unicode code point }
# Make sure that didn't mess with dots and commas in normal barewords
if not test .. = ".." { fail range brace expansion delimiter affects normal barewords }