diff --git a/OAuth2-Backend-Approach.md b/OAuth2-Backend-Approach.md
index 878629d..164366a 100644
--- a/OAuth2-Backend-Approach.md
+++ b/OAuth2-Backend-Approach.md
@@ -25,15 +25,15 @@ A way for the `user` to tell `google` to give an access to `myapp` app
2. Exchange Code with Token
1. Backend **POST** the `code` to Google `https://oauth2.googleapis.com/token`
- 2. Google **response** to Backend with an `access_token` and a `refresh token`
- 3. Backend **redirect** to Frontend `https://myapp/auth/success` with the `access_token` in a `cookie`
+ 2. Google **Response** to Backend with an `access_token` and a `refresh token`
+ 3. Backend **Redirect** to Frontend `https://myapp/auth/success` with the `access_token` in a `cookie`
3. Use Token
1. Frontend **GET** profile data from Backend `https://myapp/api/auth/profile` using the `cookie`
- 2. Backend **GET** profile data from Google `https://www.googleapis.com/oauth2/v3/userinfo` using the `access_token` from Frontend `cookie`
- 3. Google **response** to Backend with profile data
- 4. Backend **response** to Frontend with profile data
+ 2. Backend **GET** profile data from Google `https://www.googleapis.com/oauth2/v3/userinfo` using the `access_token`
+ 3. Google **Response** to Backend with profile data
+ 4. Backend **Response** to Frontend with profile data
@@ -132,7 +132,7 @@ Set-Cookie: access_token=ya29.a0AfH6SMC8Op6zkVX-VoA; HttpOnly; Secure; Max-Age=3
1. Recieves authorization code from Google
2. POST send the authorization code to https://oauth2.googleapis.com/token
3. POST response the access & refresh tokens
4. Respond the Fronend initial request with a cookie contains the access token
4. Redirect to Fronend success page with a cookie contains the access token