Skip to content

Commit

Permalink
Fix the latest manual on string multiplication by zero
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny authored and nicowilliams committed Jul 9, 2023
1 parent cac3ea3 commit e2bc8de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/manual/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ sections:
Division by zero raises an error. `x % y` computes x modulo y.
Multiplying a string by a number produces the concatenation of
that string that many times. `"x" * 0` produces **null**.
that string that many times. `"x" * 0` produces `""`.
Dividing a string by another splits the first using the second
as separators.
Expand Down

0 comments on commit e2bc8de

Please sign in to comment.