diff options
author | elantsev <[email protected]> | 2022-02-10 16:49:47 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:47 +0300 |
commit | afa1b6e6f8b6ee9f8df080d41bcb19b95c25c261 (patch) | |
tree | 0be08f6ef31456c320cbd3f575673be79c911588 /util/stream | |
parent | 93452ad7de84fbd34e7ba9a906bf10ce1536d722 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/stream')
-rw-r--r-- | util/stream/format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/stream/format.h b/util/stream/format.h index b033208a1b0..297725d18e0 100644 --- a/util/stream/format.h +++ b/util/stream/format.h @@ -201,7 +201,7 @@ namespace NFormatPrivate { * @param value Value to output. * @param width Target total width. * @param padc Character to use for padding. - * @see RightPad + * @see RightPad */ template <typename T> static constexpr ::NFormatPrivate::TLeftPad<T> LeftPad(const T& value, const size_t width, const char padc = ' ') noexcept { @@ -221,7 +221,7 @@ static constexpr ::NFormatPrivate::TLeftPad<const T*> LeftPad(const T (&value)[N * * Example usage: * @code - * stream << RightPad("column1", 10, ' '); // Will output "column1 " + * stream << RightPad("column1", 10, ' '); // Will output "column1 " * @endcode * * @param value Value to output. |