Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d8b95ad

Browse files
author
Noer Paanakker
committed
small typo fixes
1 parent 56ed1b8 commit d8b95ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Week1/MAKEME.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Who doesn't love kittens on their screen?
2323

2424
Write an function that makes an API call to https://wwww.placekitten.com/api
2525

26-
- Inside the same file write two programs: one with `XMLHttpRequest`, and the other with `Axios`
26+
- Inside the same file write two programs: one with `XMLHttpRequest`, and the other with `axios`
2727
- Each function should make an API call to the given endpoint: `https://wwww.placekitten.com/api`
2828
- Log the received data to the console
2929
- Incorporate error handling
@@ -34,7 +34,7 @@ Wouldn't it cool to make a new friend with just the click of a button?
3434

3535
Write a function that makes an API call to https://www.randomuser.me/api
3636

37-
- Inside the same file write two functions: one with `XMLHttpRequest`, and the other with `Axios`
37+
- Inside the same file write two functions: one with `XMLHttpRequest`, and the other with `axios`
3838
- Each function should make an API call to the given endpoint: `https://www.randomuser.me/api`
3939
- Log the received data to the console
4040
- Incorporate error handling
@@ -46,7 +46,7 @@ Let's make a randomized photo gallery!
4646
Write a function that makes an API call to https://picsum.photos/400
4747

4848
- Create an `index.html` file that will display your random image
49-
- Write two programs: one with `XMLHttpRequest`, and the other with `Axios`
49+
- Write two programs: one with `XMLHttpRequest`, and the other with `axios`
5050
- Each function should make an API call to the given endpoint: `https://picsum.photos/400`
5151
- After receiving the data, render it to the page in a `<img>`
5252
- Incorporate error handling
@@ -129,7 +129,7 @@ This URL is special, as it gives us data in JSON format (Try it out in your brow
129129

130130
Note the query string `?per_page=100` in the above URL. If you don't specify this `query string` you will only get the first 30 repositories (the default `per_page` is 30, which we know because it says so in the [API documentation](https://developer.github.com/v3/#pagination)).
131131

132-
## Week 1 Assignment:
132+
### Week 1 Assignment
133133

134134
The assignment for this week is to produce a functional application that looks similar to Figure 1:
135135

Week2/MAKEME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The assignment this week is to enhance your application to look similar to the f
3333

3434
As you can see, it looks different from the one from last week. This week we'll be rewriting most of our code to now show information for a single repository and also list its contributors (instead of the details for all repositories). A user should be able to search for all repositories in the account and select the one they want more information on.
3535

36-
## Week 2 Assignment
36+
### Week 2 Assignment
3737

3838
The enhanced application should fulfill the following requirements:
3939

0 commit comments

Comments
 (0)