Fix typo in newsletter.

Change-Id: Ieaa7c8fd6c9018d831e26db594aa5707c014625c
Reviewed-on: https://dart-review.googlesource.com/8021
Reviewed-by: Florian Loitsch <floitsch@google.com>
This commit is contained in:
Florian Loitsch 2017-09-25 08:19:43 +00:00
parent 9831231682
commit 415a6e2a75

View file

@ -142,7 +142,7 @@ Whenever two string literals are written next to each other, they are concatenat
``` dart
var interpolation = "interpolation";
var combi = "a string "
'that goes over multiple lines "
'that goes over multiple lines '
"and uses $interpolation "
r"and \raw strings"
```