diff --git a/README.md b/README.md
index 7b587de..91a966e 100644
--- a/README.md
+++ b/README.md
@@ -1,145 +1,182 @@
# SjpAPI - Android version
-## API to easy get word from www.sjp.pl
+
+## API to easy get word from www.sjp.pl
SjpAPI was created to get info ***ONLINE*** of any word from [Słownik języka polskiego site](www.sjp.pl)
For example:
-- Check is word in dictionary
+
+- Check is word in the dictionary
- Check if word can be used in game like scrabble
-- Print all of meaning of a word
-
+- Print all the meanings of a word
+
## Tables of contents:
+
1. [ Do i need this API? ](#need)
2. [ How it works? ](#how)
3. [ Features ](#fea)
-4. [Used technology](#tech)
-5. [ Installation ](#instal)
+4. [Technology used](#tech)
+5. [ Installation ](#install)
6. [ Using API ](#using)
7. [ Examples using ](#examples)
8. [ License ](#lic)
.
-## Do i need this API?
+## Do I need this API?
### When you need this API:
-- Get "as fresh as tropical fruit"(***ONLINE***) meaning of any word in dictionary ["słownik języka polskiego"](https://www.sjp.pl)
+
+- Get "as fresh as tropical fruit" (***ONLINE***) meaning of any word in
+ dictionary ["słownik języka polskiego"](https://www.sjp.pl)
### When you dont need this API:
-- Only need check word is in dictionary or can be used in game like scrabble.
-In this case you can check any link from [there](https://sjp.pl/slownik/po.phtml)
-resolve your problem.
+
+- Only need to check word is in dictionary or can be used in game like scrabble.
+ In this case, you can check any link from [there](https://sjp.pl/slownik/po.phtml)
+ resolve your problem.
.
## How it works
-It is very simple. I locate all GET output from searching word is similary. For example:
+
+It is basic. I locate all `GET` output from searching word is similar. For example:
+
- Any name of word is in "h1" tag
- Any info about word can be used game like scrabble is under word name.
-- Any meaning of word is under "znaczenie:"
+- Any meaning of the word is under "znaczenie:"
+
+Diagram to display the flow and logic of the program:
-So to this dependencies i create schema:

```diff
-- According to this dependencies any small changes in sjp.pl site
-- might make SjpAPI unusable.
+- According to the flow above any small changes in sjp.pl site might make SjpAPI unusable.
+ I will try to support if needed :D
```
### Examples Http outputs
-Http output when i try to reach word: "zamek" https://sjp.pl/zamek
+Http output when I try to reach word: "zamek" https://sjp.pl/zamek

-Http output when i try to reach word who is not in dictionary:
+Http output when I try to reach word not in dictionary:

-
.
## Features
- Print word in JSON format
-- Use like .jar library
+- Use as a `.jar` library
-SjpAPI is a library which "check" word online.
-I know all necesarry word can be found [there](https://sjp.pl/slownik/po.phtml),
-but **sjp team** working all the time with which word can be used in game like scrabble and
-it is not possible to get meaning of any word from site above.
-In this case this API was created.
+SjpAPI is a library which "checks" word online.
+I know all necessary words can be found [there](https://sjp.pl/slownik/po.phtml),
+but **sjp team** working all the time with which word can be used in game like scrabble.
+Moreover, it is not possible to get the meaning of any word from the site above.
+For those reasons, this API was created.
.
## Tech
-Used technology
+Technology used
- [Android studio](https://developer.android.com/studio) - To develop and test API
- [JUnit](https://junit.org/junit5/) - To test API
-- [Java 8](https://java.com/pl/download/help/java8.html) - Languege used in API
+- [Java 8](https://java.com/pl/download/help/java8.html) - language used in API
- [Słownik Języka Polskiego](https://sjp.pl) - Site which polish dictionary
-- [Apache StringUtils](http://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html) - Used in a small string operations ;)
+- [Apache StringUtils](http://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html) -
+ Used in small string operations ;)
-.
+.
## Installation
- 1. Add [sjpApi.jar](https://github.com/GHRik/SjpAPI/blob/main/library/SjpApi.jar) as extended library to your java project and import:
+1. Add [sjpApi.jar](https://github.com/GHRik/SjpAPI/blob/main/library/SjpApi.jar) as the extended library to your java
+ project and import:
+
```
import com.sjp.sjpapi.SjpAPI;
```
.
-## Using
+## Usage
-1. Import
-```
+1. Import class `SjpAPI`
+
+```java
import com.sjp.sjpapi.SjpAPI;
```
-2. Example of word "owoc":
-```
-String json = SjpAPI.getWord("owoc");
-```
+2. Get word in JSON format
-Output from example:
+```java
+String json=SjpAPI.getWord("owoc");
```
-{"name":"owoc","count":1,"canBeUsed[0]":true,"variant[0]":"owoc","meaning[0]":"1. występujący u roślin okrytozalążkowych wytwór zalążni słupka kwiatowego;\n2. rezultat działań, wynik, skutek;\n3. potocznie, zbiorowo: płody drzew oraz krzewów owocowych"}
+
+Output, for example:
+
+```json
+{
+ "name": "owoc",
+ "count": 1,
+ "canBeUsed[0]": true,
+ "variant[0]": "owoc",
+ "meaning[0]": "1. występujący u roślin okrytozalążkowych wytwór zalążni słupka kwiatowego;\n2. rezultat działań, wynik, skutek;\n3. potocznie, zbiorowo: płody drzew oraz krzewów owocowych"
+}
```
-##### Means of json field:
-- Name: Name of searching word
-- Count: How many meaning word have
-- canBeUsed[index]: this word as meaning[index] can be used in game like scrabble
-- viariant[index]: this field is point from which word searching word is created. For example if you searching for: "równe" , one of the variant is "równa" or "równy" [check it out](https://www.sjp.pl/równe)
-- meaning[index]: one of meaning of word
+##### Meanings of json fields:
-Sometimes a sjp.pl site is in ***bad format*** and it is unavailable to read "meaning" of word. [Look at this issue](https://github.com/GHRik/SjpAPI/issues/6)
-So in this case a output from "meaning[index]" field is "BAD FORMAT" , you can see in example below.
+- `name`: Name of searching word
+- `count`: How many meanings a word has
+- `canBeUsed[index]`: this word as meaning[index] can be used in game like scrabble
+- `variant[index]`: this field is the point from which word searching word is created. For example, if you're searching
+ for: "równe", one of the variants is "równa" or "równy" [check it out](https://www.sjp.pl/równe)
+- `meaning[index]`: one of the meanings of the word
-For example:
-Searching for word "wypasać"
-```
-String json = SjpAPI.getWord("wypasać");
-```
-Output from example:
+Sometimes _sjp.pl_ site is in ***bad format,*** and it is unavailable to read "meaning" of a
+word. [Look at this issue](https://github.com/GHRik/SjpAPI/issues/6)
+So in this case an output from `meaning[index]` field is `BAD FORMAT`, you can see in the example below.
+
+For example,
+searching for the word "wypasać"
+
+```java
+String json=SjpAPI.getWord("wypasać");
```
-{"name":"wypasać","count":1,"canBeUsed[0]":true,"variant[0]":"wypasać","meaning[0]":"BAD FORMAT"}
+
+Output:
+
+```json
+{
+ "name": "wypasać",
+ "count": 1,
+ "canBeUsed[0]": true,
+ "variant[0]": "wypasać",
+ "meaning[0]": "BAD FORMAT"
+}
```
.
## Examples:
-To easy ilustrate i created easy [android app](https://github.com/GHRik/SjpAPI/blob/main/examplesCode/), so you are free to test it:
-##### When you input empty string OR is problem with connect to site(no internet connection):
-
+To easily illustrate, I created easy [android app](https://github.com/GHRik/SjpAPI/blob/main/examplesCode/),
+so you are free to test it:
+
+* When you input empty string OR is problem with connecting to site (no internet connection):
+
+ 
-##### Input: "zamek":
-
+* Input: "zamek":
-##### Not found in dictionary:
-
+ 
+* Not found in the dictionary:
-##### BAD FORMATING site:
-
+ 
+
+* BAD FORMATTING site:
+
+ 
.
## License
-Apache
+
+Apache License 2.0