]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/style-guide/src/statements.md
Rollup merge of #104967 - willcrichton:fix-scrape-examples, r=notriddle
[rust.git] / src / doc / style-guide / src / statements.md
index 9c3eba12d2ecbc43d024d617d78065594e774c11..29b48bb1ee0b78a8be8127a31031cc935d35de07 100644 (file)
@@ -79,14 +79,14 @@ let foo:
     ALongType =
 {
     an_expression();
-    ...    
+    ...
 };
 
 let Foo {
     f: abcd,
     g: qwer,
 }: Foo<Bar> = Foo {
-    f: blimblimblim, 
+    f: blimblimblim,
     g: blamblamblam,
 };