summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoritchyny <itchyny@cybozu.co.jp>2023-07-09 12:30:55 +0900
committerNico Williams <nico@cryptonector.com>2023-07-08 23:10:07 -0500
commite2bc8de8bb0487e9ae9f8d8203cf4988154ba3f0 (patch)
treeb42d2fd30f65a84a95b3b00d02db7bbcd1ed27b0
parentcac3ea37262c3fdf77d6947b136873b12d3794ea (diff)
Fix the latest manual on string multiplication by zero
-rw-r--r--docs/content/manual/manual.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index 1a82ec96..30b0cf60 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -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.