Skip to content

Commit 9a39770

Browse files
committed
Merge pull request #6 from jopecko/readme-edits
minor typos in project README
2 parents 2cf43f3 + 7793e98 commit 9a39770

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ There is a server that the app hits for data. The data is only stored in memory,
2121
In the `server` directory
2222

2323
* Install nvm and node-4.0.0
24+
* Install dependencies: `npm install`
2425
* Run it: `npm start`
2526

2627
It has sample data in the `models.js` file. For example, there is a user bleonard (password: "sample") that you can log in as.
@@ -42,7 +43,7 @@ We'll get there, but we're still working on the iOS version.
4243

4344
The sole method of navigation (what's showing on the screen and where the back button goes) is via urls. We parse urls to determine the route stack. There is some stuff to make "related" url navigation look "right" (push and pop). Making everything addressable by URL is great for deep linking and forces each screen to be able to load all on it's own from simple data.
4445

45-
The Router handles parsing different routes depending if you are logged in or not. The urls must be ablet o represent the entire navigation stack, so that means they can be recursive like my friend's friend's friend's feed (sample://dashboard/follows/john/follows/sarah/follows/amy/posts).
46+
The Router handles parsing different routes depending if you are logged in or not. The urls must be able to represent the entire navigation stack, so that means they can be recursive like my friend's friend's friend's feed (sample://dashboard/follows/john/follows/sarah/follows/amy/posts).
4647

4748
#### Flux
4849

@@ -108,7 +109,3 @@ We'll have to figure this one out eventually.
108109
## License
109110

110111
MIT
111-
112-
113-
114-

0 commit comments

Comments
 (0)