docs: Address some typos and be clearer
Change-Id: Ib4fe8e0d9d07350488b0369eddf4be3c01853010
diff --git a/GettingStarted.md b/GettingStarted.md
index 60c08d1..023e5c2 100644
--- a/GettingStarted.md
+++ b/GettingStarted.md
@@ -43,13 +43,13 @@
## Day-to-day Development Workflow
-In general, the way working with repo works is relatively simple:
+In general, working with repo is relatively simple:
1. Create a working topic branch to make changes on with `repo start
${TOPICNAME}`
2. Make your changes to the files. Add them with `git add -A` and commit with
`git commit`.
- 3. Upload your changes with `repo upload -r ${REVIEWER} --cc ${CC_LIST}`
+ 3. Upload your changes with `repo upload --re ${REVIEWER} --cc ${CC_LIST}`
4. Go to the URL repo spits out to read and reply to comments.
5. Eventually your reviewer will give you a +2 LGTM on your change. To submit,
click the "SUBMIT" button on the change in the web interface.
@@ -72,9 +72,12 @@
To upload a branch to gerrit for review, do this:
```
-repo upload -r ${REVIEWER} --cc ${CC_LIST}
+repo upload --re reviewer1,reviewer2 --cc email@host.com,email2@host2.com
```
+Reviewers can be specified as usernames or full email addresses, likewise for
+`--cc`.
+
Repo will then output a URL for you to visit that allows you to make comments
and abandon and merge the changes into the repository. To make changes during
the review process, make your changes to the files, then:
@@ -82,7 +85,7 @@
```
git add -A # To add the files you've changed
git commit --amend # To update the previous change
-repo upload -t -r ${REVIEWER} --cc ${CC_LIST} # To upload the change to Gerrit for review
+repo upload -t --re ${REVIEWER} --cc ${CC_LIST} # To upload the change to Gerrit for review
```
## Repository Layout