Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
heinsaar committed Oct 20, 2023
1 parent 01a3604 commit 1a6e720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ So, for example, even though STL containers were not meant to be derived from (i
are not virtual), `zen::string` derives from `std::string` in order to quickly, without having to implement all
the conversion operators and delegate functions that a composition-based approach would require, provide the ability
to convert to and from `std::string` at any point in the codebase whenever there's need for the richer interface
of working with strings that `zen::string` provides. Although `zen::string` and similarly derived types in `zen`
of working with strings that `zen::string` provides. Nevertheless, `zen::string` and similarly derived types in `zen`
do have all the necessary restrictions in place to prevent such dynamic allocations just in case.

This approach is rooted in the philosophy that in the vast majority of cases and projects, the benefits from these
Expand Down

0 comments on commit 1a6e720

Please sign in to comment.