aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs
diff options
context:
space:
mode:
authorcobat <cobat@yandex-team.ru>2022-02-10 16:49:07 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:07 +0300
commite486e109b08823b61996f2154f0bc6b7c27a4af4 (patch)
treecb98553f871fe96452fd02bd46a1a4e0cf165844 /library/cpp/codecs
parent85e7b8b43a12f69b4721aee71dea28491c9bd503 (diff)
downloadydb-e486e109b08823b61996f2154f0bc6b7c27a4af4.tar.gz
Restoring authorship annotation for <cobat@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/codecs')
-rw-r--r--library/cpp/codecs/README.md8
-rw-r--r--library/cpp/codecs/static/tools/static_codec_checker/README4
-rw-r--r--library/cpp/codecs/static/tools/static_codec_generator/README4
3 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/codecs/README.md b/library/cpp/codecs/README.md
index 42646ccd97..6e65f710fb 100644
--- a/library/cpp/codecs/README.md
+++ b/library/cpp/codecs/README.md
@@ -1,4 +1,4 @@
-This is a library of compression algorithms with a unified interface and serialization.
+This is a library of compression algorithms with a unified interface and serialization.
See also library/cpp/codecs/static, where a support for statically compiled dictionaries is implemented.
All algorithms have a common `ICodec` interface (described in codecs.h).
@@ -26,9 +26,9 @@ The `ICodec` interface has the following methods:\
            - The name of the codec. It is required for registration of the codec in the system of serialization/deserialization.\
                    For example, it allows you to save information about which combination of codecs was in use (see below).\
    `virtual void Learn(ISequenceReader*);`\
-            - The interface for teaching codecs that use information about the distribution of data.
+            - The interface for teaching codecs that use information about the distribution of data.
-In addition, the library has a number of utilities that allow a more flexible use of it.
+In addition, the library has a number of utilities that allow a more flexible use of it.
In the `ICodec` class the following methods are available:\
    `static TCodecPtr GetInstance(const TString& name);`\
@@ -43,4 +43,4 @@ In the `ICodec` class the following methods are available:\
    `static TCodecPtr RestoreFromString(TStringBuf data);`\
            - Loads the codec instance from the string\
    `static TVector<TString> GetCodecsList();`\
-            - The list of registered codecs
+            - The list of registered codecs
diff --git a/library/cpp/codecs/static/tools/static_codec_checker/README b/library/cpp/codecs/static/tools/static_codec_checker/README
index 723a68300b..775854c8f9 100644
--- a/library/cpp/codecs/static/tools/static_codec_checker/README
+++ b/library/cpp/codecs/static/tools/static_codec_checker/README
@@ -1,4 +1,4 @@
-This is a viewer for generated codec and utility for verification of the compression quality on a new data.
+This is a viewer for generated codec and utility for verification of the compression quality on a new data.
-Usage:
+Usage:
static_codec_checker -t -c 029b29ff64a74927.codec_info -f plain samples.txt
diff --git a/library/cpp/codecs/static/tools/static_codec_generator/README b/library/cpp/codecs/static/tools/static_codec_generator/README
index e6bb52b959..e7900ddcca 100644
--- a/library/cpp/codecs/static/tools/static_codec_generator/README
+++ b/library/cpp/codecs/static/tools/static_codec_generator/README
@@ -1,4 +1,4 @@
-This is a utility for reproducible teaching of a codec. And also for saving it into a file with a unique name for a static compilation as a resource.
+This is a utility for reproducible teaching of a codec. And also for saving it into a file with a unique name for a static compilation as a resource.
-Usage:
+Usage:
static_codec_generator -t -m 'the training data description' -f plain samples.txt