diff --git a/po/ja.po b/po/ja.po index b7466df29f..3bfd7cd541 100644 --- a/po/ja.po +++ b/po/ja.po @@ -17204,14 +17204,14 @@ msgid "" "````\n" "#![doc(html_playground_url = \"https://play.rust-lang.org/\")]\n" "//! ```\n" -"//! println!(\"Hello Wolrd\");\n" +"//! println!(\"Hello World\");\n" "//! ```\n" "````" msgstr "" "````\n" "#![doc(html_playground_url = \"https://play.rust-lang.org/\")]\n" "//! ```\n" -"//! println!(\"Hello Wolrd\");\n" +"//! println!(\"Hello World\");\n" "//! ```\n" "````" diff --git a/src/meta/playground.md b/src/meta/playground.md index 5fc488c78b..30b87e896b 100644 --- a/src/meta/playground.md +++ b/src/meta/playground.md @@ -42,7 +42,7 @@ Playground. This feature is enabled if you use the `#[doc]` attribute called ``` #![doc(html_playground_url = "https://play.rust-lang.org/")] //! ``` -//! println!("Hello Wolrd"); +//! println!("Hello World"); //! ``` ```