Skip to content

Commit

Permalink
std.utf: Fix style (space around ..)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Mar 11, 2017
1 parent 05641de commit 86c4314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/utf.d
Original file line number Diff line number Diff line change
Expand Up @@ -3397,7 +3397,7 @@ if (isAutodecodableString!R ||
void popBack() { str = str[0 .. $-1]; }

auto ref opIndex(size_t index) inout { return str[index]; }
auto opSlice(size_t lower, size_t upper) { return ByCodeUnitImpl(str[lower..upper]); }
auto opSlice(size_t lower, size_t upper) { return ByCodeUnitImpl(str[lower .. upper]); }

@property size_t length() const { return str.length; }
alias opDollar = length;
Expand Down

0 comments on commit 86c4314

Please sign in to comment.