ソースを参照

Update quickstart.md

Louie van Bommel 7 年 前
コミット
7c884802f8
1 ファイル変更5 行追加5 行削除
  1. 5 5
      docs/quickstart.md

+ 5 - 5
docs/quickstart.md

@@ -1,7 +1,7 @@
 ## Getting started
 ## Getting started
 
 
 ### Install
 ### Install
-To install Gravity, simply execute the commands given below. It should make two executables: the compiler itself and test runner.
+To install Gravity, simply execute the commands given below. This should make two executables: **gravity**, the compiler itself and **unittest**, the test runner.
 ```bash
 ```bash
 	git clone https://github.com/marcobambini/gravity.git
 	git clone https://github.com/marcobambini/gravity.git
 	cd gravity
 	cd gravity
@@ -12,7 +12,7 @@ To install Gravity, simply execute the commands given below. It should make two
 You can also use the **Xcode** project to create the gravity or unittest executables.
 You can also use the **Xcode** project to create the gravity or unittest executables.
 
 
 ### Configure your editor
 ### Configure your editor
-Programming is way more enjoyable when you have the right tools. That's why we equipped several code editors with Gravity support. Just click on your favourite editor and configure it accordingly:
+Programming is way more enjoyable when you have the right tools. That's why we've equipped several code editors with Gravity support. Just click on your favourite editor and configure it accordingly:
 * [Visual Studio Code](https://github.com/Dohxis/vscode-gravity)
 * [Visual Studio Code](https://github.com/Dohxis/vscode-gravity)
 * [Atom](https://github.com/Tribex/atom-language-gravity)
 * [Atom](https://github.com/Tribex/atom-language-gravity)
 * [vim](https://github.com/hallzy/gravity.vim)
 * [vim](https://github.com/hallzy/gravity.vim)
@@ -39,11 +39,11 @@ To directly execute a gravity file (without first serializing it to json):
 	./gravity myfile.gravity
 	./gravity myfile.gravity
 ```
 ```
 ### Unit Tests
 ### Unit Tests
-You can run unit tests by providing a path to a folder containing all test files:
+You can run [unit tests](../unittest) by providing a path to a folder containing all test files:
 ```bash
 ```bash
 	./unittest path_to_test_folder
 	./unittest path_to_test_folder
 ```
 ```
-You should obtain an output like:
+This should produce output like:
 	<img src="assets/images/unittest.png" width="666px" height="466px">
 	<img src="assets/images/unittest.png" width="666px" height="466px">
 
 
 			
 			
@@ -53,4 +53,4 @@ A simple <strong>Hello World</strong> code in Gravity looks like:
 	func main() {
 	func main() {
 		System.print("Hello World!")
 		System.print("Hello World!")
 	}
 	}
-```
+```