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.
|
/// Strips (aka trims) leading and/or trailing whitespace from the string.
|
||||||
alias strip = arsd.core.stripInternal;
|
alias strip = arsd.core.stripInternal;
|
||||||
/// ditto
|
/// ditto
|
||||||
@deprecated("D calls this `strip` instead") alias trim = strip;
|
deprecated("D calls this `strip` instead") alias trim = strip;
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
alias stripRight = arsd.core.stripInternal;
|
alias stripRight = arsd.core.stripInternal;
|
||||||
/// ditto
|
/// 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?
|
// stripLeft? variants where you can list the chars to strip?
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue