mirror of https://github.com/adamdruppe/arsd.git
oops no @ on deprecated
This commit is contained in:
parent
6c52dadb44
commit
54ceabc404
4
string.d
4
string.d
|
|
@ -31,12 +31,12 @@ alias indexOf = arsd.core.indexOf;
|
|||
/// Strips (aka trims) leading and/or trailing whitespace from the string.
|
||||
alias strip = arsd.core.stripInternal;
|
||||
/// ditto
|
||||
@deprecated("D calls this `strip` instead") alias trim = strip;
|
||||
deprecated("D calls this `strip` instead") alias trim = strip;
|
||||
|
||||
/// ditto
|
||||
alias stripRight = arsd.core.stripInternal;
|
||||
/// ditto
|
||||
@deprecated("D calls this `stripRight` instead") alias trimRight = stripRight;
|
||||
deprecated("D calls this `stripRight` instead") alias trimRight = stripRight;
|
||||
|
||||
// stripLeft? variants where you can list the chars to strip?
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue