Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js/lesson4/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ HTTP Verbs are the actions performed when the server receives a request.

#AJAX

AJAX is a way of updating websites asynchronously, without having to reload them. It stands for **A**synchronous **Ja**vascript and **X**ML.
AJAX is a way of updating websites asynchronously, without having to reload them. It stands for ​**A**​synchronous ​**Ja**​vascript and ​**X**​ML.

##Request using JavaScript

Expand Down Expand Up @@ -76,7 +76,7 @@ To be able to utilise the response we get, we need to convert it to `JSON`.
JSON.parse(response)
```

> JSON stands for **J**ava**S**cript **O**bject **N**otation.
> JSON stands for ​**J**​ava​**S**​cript ​**O**​bject ​**N**​otation.

##Exercise 1 - Retrieve GitHub user information

Expand Down