diff --git a/docs/content_ja.md b/docs/content_ja.md index 835db66..97fd401 100644 --- a/docs/content_ja.md +++ b/docs/content_ja.md @@ -774,7 +774,7 @@ println!("{}", label); let hello = "Hello"; let world = "world!"; let hello = hello.to_string(); -let buffer = new String(); +let mut buffer = new String(); buffer = buffer + &hello + world; println!("{}", buffer); ~~~