Updated Building with GN (markdown)
diff --git a/Building-with-GN.md b/Building-with-GN.md
index 088474a..7f137dd 100644
--- a/Building-with-GN.md
+++ b/Building-with-GN.md
@@ -3,9 +3,9 @@
 # Building V8
 
 V8 is built with the help of [GN](https://chromium.googlesource.com/chromium/src/+/master/tools/gn/docs). GN is a meta build system of sorts, as it generates build files for a number of other build systems. How you build therefore depends on what "back-end" build system and compiler you're using.
-The instructions below assume that you already have a [checkout of V8](Using Git) but haven't yet installed the build dependencies.
+The instructions below assume that you already have a [checkout of V8](https://github.com/v8/v8/wiki/Using-Git) but haven't yet installed the build dependencies.
 
-If you intend to develop on V8, i.e., send patches and work with changelists, you will need to install the dependencies as described [here](Using Git).
+If you intend to develop on V8, i.e., send patches and work with changelists, you’ll need to install the dependencies as described [here](https://github.com/v8/v8/wiki/Using-Git).
 
 More information on GN can be found in [Chromium's documentation](https://www.chromium.org/developers/gn-build-configuration) or [GN's own](https://chromium.googlesource.com/chromium/src/+/master/tools/gn/docs).
 
@@ -15,11 +15,11 @@
 
 ```gclient sync```
 
-GN itself is distributed with [depot_tools](https://www.chromium.org/developers/how-tos/install-depot-tools).
+GN itself is distributed with [`depot_tools`](https://www.chromium.org/developers/how-tos/install-depot-tools).
 
 ## Building
 
-There are two workflows for building v8. A raw workflow using commands on a lower level and a convenience workflow using wrapper scripts.
+There are two workflows for building V8. A raw workflow using commands on a lower level and a convenience workflow using wrapper scripts.
 
 #### Build instructions (convenience workflow)