README: Mark "together" to facilitate reading

It might not be the best way to change this sentence, but I had to read it 3 times to get that `together` is a variable name.
pull/114/head
hoijui 3 years ago committed by GitHub
parent 68cb05d0d1
commit 5a78c818f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1278,7 +1278,7 @@ fn main() {
}
```
Now we have a String named together but did not print it yet.
Now we have a String named *together*, but did not print it yet.
One other way to make a String is called `.into()` but it is a bit different because `.into()` isn't just for making a `String`. Some types can easily convert to and from another type using `From` and `.into()`. And if you have `From`, then you also have `.into()`. `From` is clearer because you already know the types: you know that `String::from("Some str")` is a `String` from a `&str`. But with `.into()`, sometimes the compiler doesn't know:

Loading…
Cancel
Save