Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Sep 3, 2024
1 parent 22d9201 commit 24cc767
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/text/string_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace xtd {
/// @brief Contains classes that represent ASCII and Unicode character encodings; abstract base classes for converting blocks of characters to and from blocks of bytes; and a helper class that manipulates and formats xtd::string objects without creating intermediate instances of xtd::string.
namespace text {
/// @brief Represents text as a sequence of UTF-32 code units.
/// @brief Represents text as a sequence of UTF-8 code units.
/// @par Namespace
/// xtd
/// @par Library
Expand Down
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/text/u16string_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace xtd {
/// @brief Contains classes that represent ASCII and Unicode character encodings; abstract base classes for converting blocks of characters to and from blocks of bytes; and a helper class that manipulates and formats xtd::string objects without creating intermediate instances of xtd::string.
namespace text {
/// @brief Represents text as a sequence of UTF-32 code units.
/// @brief Represents text as a sequence of UTF-16 code units.
/// @par Namespace
/// xtd
/// @par Library
Expand Down
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/text/u8string_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace xtd {
/// @brief Contains classes that represent ASCII and Unicode character encodings; abstract base classes for converting blocks of characters to and from blocks of bytes; and a helper class that manipulates and formats xtd::string objects without creating intermediate instances of xtd::string.
namespace text {
#if defined(__xtd__cpp_lib_char8_t)
/// @brief Represents text as a sequence of UTF-32 code units.
/// @brief Represents text as a sequence of UTF-8 code units.
/// @par Namespace
/// xtd
/// @par Library
Expand Down
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/text/wstring_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace xtd {
/// @brief Contains classes that represent ASCII and Unicode character encodings; abstract base classes for converting blocks of characters to and from blocks of bytes; and a helper class that manipulates and formats xtd::string objects without creating intermediate instances of xtd::string.
namespace text {
/// @brief Represents text as a sequence of UTF-32 code units.
/// @brief Represents text as a sequence of UTF-16 code unit on Windows or UTF-32 code unit on non-Windows systems.
/// @par Namespace
/// xtd
/// @par Library
Expand Down

0 comments on commit 24cc767

Please sign in to comment.