oops no @ on deprecated

This commit is contained in:
Adam D. Ruppe 2025-07-20 13:54:31 -04:00
parent 6c52dadb44
commit 54ceabc404
1 changed files with 2 additions and 2 deletions

View File

@ -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?