aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorvtyulb <vtyulb@yandex-team.ru>2022-02-10 16:50:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:25 +0300
commitb55b756020eeb596f7f92ac29e65957273abbb2c (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library
parent5f3d238c7ac51f3b9d8b84e7b062bba37bd5fe2c (diff)
downloadydb-b55b756020eeb596f7f92ac29e65957273abbb2c.tar.gz
Restoring authorship annotation for <vtyulb@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library')
-rw-r--r--library/cpp/json/fast_sax/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/json/fast_sax/parser.h b/library/cpp/json/fast_sax/parser.h
index f52839ba1a..b5f031dd9e 100644
--- a/library/cpp/json/fast_sax/parser.h
+++ b/library/cpp/json/fast_sax/parser.h
@@ -6,7 +6,7 @@ namespace NJson {
bool ReadJsonFast(TStringBuf in, TJsonCallbacks* callbacks);
inline bool ValidateJsonFast(TStringBuf in, bool throwOnError = false) {
- Y_ASSERT(false); // this method is broken, see details in IGNIETFERRO-1243. Use NJson::ValidateJson instead, or fix this one before using
+ Y_ASSERT(false); // this method is broken, see details in IGNIETFERRO-1243. Use NJson::ValidateJson instead, or fix this one before using
TJsonCallbacks c(throwOnError);
return ReadJsonFast(in, &c);
}