From 47f501d11eee46bd7117441564fbeb6ca89c964f Mon Sep 17 00:00:00 2001 From: Mohammad Mohammadi Date: Wed, 20 Feb 2019 10:50:01 -0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 026bf05b..ec30cd2e 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ The following diagram presents ExPreSS architecture. The package provides an [in ### Parsers -ExPreSS parsers are responsible for extracting raw data from available sources such as data on the disk and provide the data to properties classes. In order to make sure all parsers implement the same interfaces and abstract properties classes from the parsers implementations, a set a [Mixin](express/parsers/mixins) classes are provided which should be mixed with the parsers. The parsers must implement Mixins' abstract methods at the time of inheritance. +As explained above, ExPreSS parsers are responsible for extracting raw data from different sources such as data on the disk and provide the raw data to properties classes. In order to make sure all parsers implement the same interfaces and abstract properties classes from the parsers implementations, a set a [Mixin Classes](express/parsers/mixins) are provided which should be mixed with the parsers. The parsers must implement Mixins' abstract methods at the time of inheritance. ### Properties -ExPreSS properties classes are responsible to form the properties based on the raw data provided by the parsers and serialize the property according to EDC outlined in [ESSE](https://github.com/Exabyte-io/exabyte-esse). A list of supported properties are available in [here](express/settings.py). +ExPreSS properties classes are responsible to form the properties based on the raw data provided by the parsers and serialize the property according to EDC. A list of supported properties are available in [here](express/settings.py). ## Installation