Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeMyst committed Jun 27, 2020
1 parent 2c03bac commit 9e78769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/cosmomyst/math/vector.d
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ struct vec(ulong n) if (n >= 1) {
return res;
}

@nogc void opOpAssign(string s) (const float scalar) pure notrhow if (s == "*") {
@nogc void opOpAssign(string s) (const float scalar) pure nothrow if (s == "*") {
auto res = this * scalar;
this.v = res.v;
}
Expand Down

0 comments on commit 9e78769

Please sign in to comment.