aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/writer
diff options
context:
space:
mode:
authorcerevra <cerevra@yandex-team.ru>2022-02-10 16:45:58 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:58 +0300
commitbf41dd01f6c920583e9faae7cd55ed25e547e052 (patch)
treeec7c8c285ffa648a5c5efeff453787a15ab811ac /library/cpp/json/writer
parente2c3e3004f7cd68441cefcfa4aaccd3d8051c846 (diff)
downloadydb-bf41dd01f6c920583e9faae7cd55ed25e547e052.tar.gz
Restoring authorship annotation for <cerevra@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/writer')
-rw-r--r--library/cpp/json/writer/README2
-rw-r--r--library/cpp/json/writer/json.cpp2
-rw-r--r--library/cpp/json/writer/json_ut.cpp2
-rw-r--r--library/cpp/json/writer/json_value.h2
-rw-r--r--library/cpp/json/writer/ut/ya.make4
-rw-r--r--library/cpp/json/writer/ya.make2
6 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/json/writer/README b/library/cpp/json/writer/README
index a20489f32e..bb63029bcd 100644
--- a/library/cpp/json/writer/README
+++ b/library/cpp/json/writer/README
@@ -3,7 +3,7 @@ where HTML special characters are always escaped.
Use it like this:
- #include <library/cpp/json/writer/json.h>
+ #include <library/cpp/json/writer/json.h>
...
NJsonWriter::TBuf json;
diff --git a/library/cpp/json/writer/json.cpp b/library/cpp/json/writer/json.cpp
index 02370c2d79..d9cc4924c9 100644
--- a/library/cpp/json/writer/json.cpp
+++ b/library/cpp/json/writer/json.cpp
@@ -1,6 +1,6 @@
#include "json.h"
-#include <library/cpp/json/json_value.h>
+#include <library/cpp/json/json_value.h>
#include <util/string/cast.h>
#include <util/string/strspn.h>
diff --git a/library/cpp/json/writer/json_ut.cpp b/library/cpp/json/writer/json_ut.cpp
index 9980555683..b228218574 100644
--- a/library/cpp/json/writer/json_ut.cpp
+++ b/library/cpp/json/writer/json_ut.cpp
@@ -2,7 +2,7 @@
#include <util/system/sanitizers.h>
#include "json.h"
-#include <library/cpp/json/json_value.h>
+#include <library/cpp/json/json_value.h>
#include <limits>
diff --git a/library/cpp/json/writer/json_value.h b/library/cpp/json/writer/json_value.h
index 3f0f50bc4c..93f0a32ef8 100644
--- a/library/cpp/json/writer/json_value.h
+++ b/library/cpp/json/writer/json_value.h
@@ -1,6 +1,6 @@
#pragma once
-#include <library/cpp/json/common/defs.h>
+#include <library/cpp/json/common/defs.h>
#include <util/generic/string.h>
#include <util/generic/hash.h>
diff --git a/library/cpp/json/writer/ut/ya.make b/library/cpp/json/writer/ut/ya.make
index 1e39dae6a1..0f2058b079 100644
--- a/library/cpp/json/writer/ut/ya.make
+++ b/library/cpp/json/writer/ut/ya.make
@@ -3,10 +3,10 @@ UNITTEST()
OWNER(myltsev)
PEERDIR(
- ADDINCL library/cpp/json/writer
+ ADDINCL library/cpp/json/writer
)
-SRCDIR(library/cpp/json/writer)
+SRCDIR(library/cpp/json/writer)
SRCS(
json_ut.cpp
diff --git a/library/cpp/json/writer/ya.make b/library/cpp/json/writer/ya.make
index 3989ff3504..6a4a99eeea 100644
--- a/library/cpp/json/writer/ya.make
+++ b/library/cpp/json/writer/ya.make
@@ -7,7 +7,7 @@ OWNER(
)
PEERDIR(
- library/cpp/json/common
+ library/cpp/json/common
)
SRCS(