about summary refs log tree commit diff
diff options
context:
space:
mode:
authorXAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>2020-02-10 15:29:14 +0100
committerGitHub <noreply@github.com>2020-02-10 15:29:14 +0100
commit32daa2aa38fafd731ddc27374dece22f38069bc8 (patch)
treed44d507cc2a1d066a0927ab1ecb6ffaa1e49c684
parent7ab01b24674b88ff4927b0eb445a582fb9e12aba (diff)
downloadrust-32daa2aa38fafd731ddc27374dece22f38069bc8.tar.gz
rust-32daa2aa38fafd731ddc27374dece22f38069bc8.zip
Update RELEASES.md
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index f97d902d332..5d10e658f90 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -12,7 +12,7 @@ Language
       match words {
           ["Hello", "World", "!", ..] => println!("Hello World!"),
           ["Foo", "Bar", ..] => println!("Baz"),
-          rest => println!("{}", rest),
+          rest => println!("{:?}", rest),
       }
   }
   ```