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

Skip to content

Commit 48bee1a

Browse files
committed
corrected typos
1 parent 13bd4b2 commit 48bee1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Week1/MAKEME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Figure 1. Example User Interface using [Material Design](https://material.io/gui
4949
4. All other HTML elements should be generated programmatically by your `app.js` file and ultimately be hanging of the root `div` element.
5050
5. Implement the repository selection list by means of an HTML [\<select\>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select) element.
5151

52-
You will need to use XMLHttpRequests against the GitHub API to get the relevant information. The GitHub API documentation is very extensive. The overview is given [here](https://developer.github.com/v3/) but we will point you to the relevant sections in the documentation needed for this assignment.
52+
You will need to use XMLHttpRequests against the GitHub API to get the relevant information. The GitHub API documentation is very extensive. An overview is given [here](https://developer.github.com/v3/) but we will point you to the relevant sections in the documentation needed for this assignment.
5353

5454
#### List of repositories
5555

@@ -79,7 +79,7 @@ GitHub API documentation: [Get](https://developer.github.com/v3/repos/#get)
7979

8080
The response object that is returned by GitHub from the request to get repository information includes a property with the `contributors_url`. Use the value of this property to make a new request to GitHub to obtain a list of contributors.
8181

82-
Note that, as a result of selecting a repository from the `\<select>` element, your code must make two XMLHttpRequests, one after the other:
82+
Note that, as a result of selecting a repository from the `\<select\>` element, your code must make two XMLHttpRequests, one after the other:
8383

8484
1. A first request to obtain repository information.
8585
2. A second request using the `contributors_url` obtained from (1) to get a list of contributor information.

0 commit comments

Comments
 (0)