aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvdmit <vdmit@yandex-team.ru>2022-02-10 16:50:27 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:27 +0300
commita1a503bb8b1af3ec4b54d6bbcbcad072247f4479 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8
parent69c964333af7a135ed5ba2861b12374f55298da2 (diff)
downloadydb-a1a503bb8b1af3ec4b54d6bbcbcad072247f4479.tar.gz
Restoring authorship annotation for <vdmit@yandex-team.ru>. Commit 2 of 2.
-rw-r--r--library/cpp/json/writer/json_value.h6
-rw-r--r--tools/ya.make8
-rw-r--r--util/generic/strbuf.h4
3 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/json/writer/json_value.h b/library/cpp/json/writer/json_value.h
index 28b68b6e44..3f0f50bc4c 100644
--- a/library/cpp/json/writer/json_value.h
+++ b/library/cpp/json/writer/json_value.h
@@ -185,10 +185,10 @@ namespace NJson {
void Swap(TJsonValue& rhs) noexcept;
- // save using util/ysaveload.h serialization (not to JSON stream)
+ // save using util/ysaveload.h serialization (not to JSON stream)
void Save(IOutputStream* s) const;
-
- // load using util/ysaveload.h serialization (not as JSON stream)
+
+ // load using util/ysaveload.h serialization (not as JSON stream)
void Load(IInputStream* s);
static const TJsonValue UNDEFINED;
diff --git a/tools/ya.make b/tools/ya.make
index 76c11a6119..51a6b8b426 100644
--- a/tools/ya.make
+++ b/tools/ya.make
@@ -22,7 +22,7 @@ RECURSE(
cproxy
crc32
crx_creator
- curl_to_ab
+ curl_to_ab
diaprintkeys
directindexer
doc_handle_decode
@@ -61,7 +61,7 @@ RECURSE(
inflector
is_holiday
jsv8
- json_to_jsonlines
+ json_to_jsonlines
langdiscr-test
lemmas_merger_builder
lemmer-test
@@ -75,7 +75,7 @@ RECURSE(
mkdocs_builder/arcadium_helper_plugin
mkdocs_builder/mkdocs_yandex
mkdocs_builder/theme
- mstand
+ mstand
mtime0
mx_bin2info
nehc
@@ -138,7 +138,7 @@ RECURSE(
seinfo
sent_index_print
showmime
- shutter_jing_plugin
+ shutter_jing_plugin
snipmake
spamfilt
stdin
diff --git a/util/generic/strbuf.h b/util/generic/strbuf.h
index 11ccfec9d6..70b9360d58 100644
--- a/util/generic/strbuf.h
+++ b/util/generic/strbuf.h
@@ -334,12 +334,12 @@ public:
return false;
}
- // returns true if string started with `prefix`, false otherwise
+ // returns true if string started with `prefix`, false otherwise
inline bool SkipPrefix(const TdSelf& prefix) noexcept {
return AfterPrefix(prefix, *this);
}
- // returns true if string ended with `suffix`, false otherwise
+ // returns true if string ended with `suffix`, false otherwise
inline bool ChopSuffix(const TdSelf& suffix) noexcept {
return BeforeSuffix(suffix, *this);
}