diff --git a/README.md b/README.md
index 3743b627d20..a104396cadb 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[](https://github.com/openvinotoolkit/openvino/releases/tag/2022.1)
+[](https://github.com/openvinotoolkit/openvino/releases/tag/2022.2.0)
[](LICENSE)


@@ -40,18 +40,18 @@ source and public models in popular formats such as TensorFlow, ONNX, PaddlePadd
### Components
* [OpenVINO™ Runtime] - is a set of C++ libraries with C and Python bindings providing a common API to deliver inference solutions on the platform of your choice.
- * [core](https://github.com/openvinotoolkit/openvino/tree/master/src/core) - provides the base API for model representation and modification.
- * [inference](https://github.com/openvinotoolkit/openvino/tree/master/src/inference) - provides an API to infer models on device.
- * [transformations](https://github.com/openvinotoolkit/openvino/tree/master/src/common/transformations) - contains the set of common transformations which are used in OpenVINO plugins.
- * [low precision transformations](https://github.com/openvinotoolkit/openvino/tree/master/src/common/low_precision_transformations) - contains the set of transformations which are used in low precision models
- * [bindings](https://github.com/openvinotoolkit/openvino/tree/master/src/bindings) - contains all available OpenVINO bindings which are maintained by OpenVINO team.
- * [c](https://github.com/openvinotoolkit/openvino/tree/master/src/bindings/c) - provides C API for OpenVINO™ Runtime
- * [python](https://github.com/openvinotoolkit/openvino/tree/master/src/bindings/python) - Python API for OpenVINO™ Runtime
-* [Plugins](https://github.com/openvinotoolkit/openvino/tree/master/src/plugins) - contains OpenVINO plugins which are maintained in open-source by OpenVINO team. For more information, see the [list of supported devices](#supported-hardware-matrix).
-* [Frontends](https://github.com/openvinotoolkit/openvino/tree/master/src/frontends) - contains available OpenVINO frontends which allow to read model from native framework format.
+ * [core](./src/core) - provides the base API for model representation and modification.
+ * [inference](./src/inference) - provides an API to infer models on the device.
+ * [transformations](./src/common/transformations) - contains the set of common transformations which are used in OpenVINO plugins.
+ * [low precision transformations](./src/common/low_precision_transformations) - contains the set of transformations that are used in low precision models
+ * [bindings](./src/bindings) - contains all available OpenVINO bindings which are maintained by the OpenVINO team.
+ * [c](./src/bindings/c) - C API for OpenVINO™ Runtime
+ * [python](./src/bindings/python) - Python API for OpenVINO™ Runtime
+* [Plugins](./src/plugins) - contains OpenVINO plugins which are maintained in open-source by the OpenVINO team. For more information, take a look at the [list of supported devices](#supported-hardware-matrix).
+* [Frontends](./src/frontends) - contains available OpenVINO frontends that allow reading models from the native framework format.
* [Model Optimizer] - is a cross-platform command-line tool that facilitates the transition between training and deployment environments, performs static model analysis, and adjusts deep learning models for optimal execution on end-point target devices.
* [Post-Training Optimization Tool] - is designed to accelerate the inference of deep learning models by applying special methods without model retraining or fine-tuning, for example, post-training 8-bit quantization.
-* [Samples] - applications on C, C++ and Python languages which shows basic use cases of OpenVINO usages.
+* [Samples] - applications in C, C++ and Python languages that show basic OpenVINO use cases.
## Supported Hardware matrix
@@ -70,7 +70,7 @@ The OpenVINO™ Runtime can infer models on different hardware devices. This sec
| Auto | -openvino_auto_plugin | +openvino_auto_plugin | Auto plugin enables selecting Intel device for inference automatically |
| Auto Batch | -openvino_auto_batch_plugin | +openvino_auto_batch_plugin | Auto batch plugin performs on-the-fly automatic batching (i.e. grouping inference requests together) to improve device utilization, with no programming effort from the user |
| Hetero | -openvino_hetero_plugin | +openvino_hetero_plugin | Heterogeneous execution enables automatic inference splitting between several devices |
| Multi | -openvino_auto_plugin | +openvino_auto_plugin | Multi plugin enables simultaneous inference of the same model on several devices in parallel |