mirror of
https://github.com/dlang/phobos.git
synced 2025-05-06 11:07:39 +03:00
Automatically set the range style from a..b -> a .. b
Commands: sed -E "s/([[:alnum:]])[.][.]([[:alnum:]])/\1 .. \2/g" -i **/*.d sed -E "s/([[:alnum:]])[.][.] ([[:alnum:]])/\1 .. \2/g" -i **/*.d sed -E "s/([[:alnum:]]) [.][.]([[:alnum:]])/\1 .. \2/g" -i **/*.d
This commit is contained in:
parent
4b49413b5a
commit
425ab667a3
69 changed files with 637 additions and 637 deletions
|
@ -41,7 +41,7 @@ struct FullCaseEntry
|
|||
|
||||
@property auto value() const @trusted pure nothrow @nogc return
|
||||
{
|
||||
return seq[0..entry_len];
|
||||
return seq[0 .. entry_len];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue