diff options
author | Evgeny Grechnikov <diamondaz@yandex.ru> | 2022-02-10 16:46:20 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:20 +0300 |
commit | c73494e681a4e497ae191ada07a55a6bf55885ff (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/system/env.h | |
parent | 6e38f52f898d7c077ddd319800b4014967a5ca76 (diff) | |
download | ydb-c73494e681a4e497ae191ada07a55a6bf55885ff.tar.gz |
Restoring authorship annotation for Evgeny Grechnikov <diamondaz@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/env.h')
-rw-r--r-- | util/system/env.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/env.h b/util/system/env.h index d7313d4944..e2ccdd1e95 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 |