aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/env.h
diff options
context:
space:
mode:
authorEvgeny Grechnikov <diamondaz@yandex.ru>2022-02-10 16:46:20 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:20 +0300
commit6e38f52f898d7c077ddd319800b4014967a5ca76 (patch)
treef0b2473cfc98506158b8f1d3d387c4f478ade18e /util/system/env.h
parentbd085aee9b4f7a0bee302ce687964ffb7098f986 (diff)
downloadydb-6e38f52f898d7c077ddd319800b4014967a5ca76.tar.gz
Restoring authorship annotation for Evgeny Grechnikov <diamondaz@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/env.h')
-rw-r--r--util/system/env.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/env.h b/util/system/env.h
index e2ccdd1e95..d7313d4944 100644
--- a/util/system/env.h
+++ b/util/system/env.h
@@ -11,7 +11,7 @@
* @return String that is associated with the matched environment variable or empty string if
* such variable is missing.
*
- * @note Use it only in pair with `SetEnv` as there may be inconsistency in their behaviour
+ * @note Use it only in pair with `SetEnv` as there may be inconsistency in their behaviour
* otherwise.
* @note Calls to `GetEnv` and `SetEnv` from different threads must be synchronized.
* @see SetEnv
@@ -24,7 +24,7 @@ TString GetEnv(const TString& key, const TString& def = TString());
* @key String identifying the name of the environment variable to set or change
* @value Value to assign
- * @note Use it only in pair with `GetEnv` as there may be inconsistency in their behaviour
+ * @note Use it only in pair with `GetEnv` as there may be inconsistency in their behaviour
* otherwise.
* @note Calls to `GetEnv` and `SetEnv` from different threads must be synchronized.
* @see GetEnv