Skip to content

Commit a6fcd41

Browse files
committed
[Sabrina] Fix formatting errors, typos, wrong link
1 parent f8a28e1 commit a6fcd41

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

docs/fundamentals/how-to-learn.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ There is also a famous book named [How to Read a Book](https://www.amazon.com/Ho
9797
- use it like a dictionary. know the structure. know where to find things
9898
- find the API docs (e.g. MDN is great for JavaScript)
9999
- figure out what you want to do (e.g. split a string into an array)
100-
- zoom in to the right place in the docs (e.g. .split()) (google is always helpful) - Understand the method - what it does - what parameters it takes in - what should the parameters look like (e.g. string, number, array, object, etc.?) - which parameters are required / optional? - what the return value is
101-
pause when confused
100+
- zoom in to the right place in the docs (e.g. `.split()`) (Google is always helpful) - understand the method, what it does, what parameters it takes in, what the parameters should look like (e.g. string, number, array, object, etc.), which parameters are required/optional, what the return value is
102101

103102
## Don't be afraid of making mistakes. Embrace failures.
104103

docs/fundamentals/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
9292
`GET /index.html HTTP/1.1` is called the _request line_.
9393
`Host: www.example.com`, `User-Agent: Mozilla/4.0` are some of the _request headers_ that exist in the HTTP request. HTTP Headers are key-value pairs that are separated by a colon.
9494

95-
You can find a list of valid headers on [MDNs HTTP Headers Reference](https://www.smashingmagazine.com/2018/01/understanding-using-rest-api/).
95+
You can find a list of valid headers on [MDN's HTTP Headers Reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers).
9696

9797
### Response
9898

docs/html&css/html.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,8 @@ HTML5 gives us semantic tags that have built-in keyboard accessibility — they
195195

196196
Using these various HTML elements to reinforce the meaning of information on our websites will often give us accessibility for free.
197197

198-
you can read more about it here:
198+
You can read more about it here:
199199

200-
https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML
201-
http://www.html5accessibility.com/
202-
203-
https://developer.chrome.com/apps/a11y
200+
- https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML
201+
- http://www.html5accessibility.com/
202+
- https://developer.chrome.com/apps/a11y

docs/javascript/classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ console.log(bob.name);
112112

113113
It is an [experimental feature, available with Node 12](https://github.com/tc39/proposal-class-fields).
114114

115-
You can read the [d]ocumentation at MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Class_fields#Public_fields).
115+
You can read the [documentation at MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Class_fields#Public_fields).
116116

117117
## Static Properties
118118

docs/javascript/node-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var sum = math.add(1, 2); //sum is 3
5656
How do you export a function but not export it inside an object? You can use the `module` object to do this.
5757
It contains information about the module and also a key called `exports`.
5858

59-
The `exports` object you youre using previously points to exports key on the `module` object.
59+
The `exports` object you were using previously points to exports key on the `module` object.
6060

6161
Exporting a function as `exports.add` is the same as exporting it as `module.exports.add`.
6262

0 commit comments

Comments
 (0)