[gn] Fix typos in the documentation.

BUG=

Review URL: https://codereview.chromium.org/1579133002

Cr-Original-Commit-Position: refs/heads/master@{#369420}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: b541f71072bc92cfcf37ed9b136c6af2c85cfdf9
diff --git a/tools/gn/docs/quick_start.md b/tools/gn/docs/quick_start.md
index ae06b96..d59abc8 100644
--- a/tools/gn/docs/quick_start.md
+++ b/tools/gn/docs/quick_start.md
@@ -266,10 +266,10 @@
 ```
 
 This applies the `hello_config` to the `hello` target itself, plus all
-targets that depend on transitively depend on the current one. Now
-everybody that depends on us will get our settings. You can also set
-`public_configs` which applies only to targets that directly
-depend on your target (not transitively).
+targets that transitively depend on the current one. Now everybody that
+depends on us will get our settings. You can also set `public_configs`
+which applies only to targets that directly depend on your target (not
+transitively).
 
 Now if you compile and run, you'll see the new version with two people:
 
@@ -323,7 +323,7 @@
 ```
 
 You can see that `TWO_PEOPLE` was defined by a config, and you can also
-see the which like caused that config to be applied to your target (in
+see the which line caused that config to be applied to your target (in
 this case, the `all_dependent_configs` line).
 
 Another particularly interesting variation: