From 40672b1b4643830211d094cb2c1f1b35c8f18caa Mon Sep 17 00:00:00 2001 From: Stuart Dilts Date: Fri, 1 May 2020 19:00:29 -0600 Subject: [PATCH] Fix typo in README optoinal -> optional --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 11f02c7..c8ce847 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ int main() } ``` -The containers are very simple and only have the methods `get`, `erase`, `contains` and `clear`. `get` can also take any number of extra optoinal parameters which will be passed to your value's constructor if the value is not already in the container. As such, `get` is very similar to `std::map`'s `try_emplace`. For example: +The containers are very simple and only have the methods `get`, `erase`, `contains` and `clear`. `get` can also take any number of extra optional parameters which will be passed to your value's constructor if the value is not already in the container. As such, `get` is very similar to `std::map`'s `try_emplace`. For example: ```c++ #define ID(x) []() constexpr { return x; } @@ -85,4 +85,4 @@ Also note, that as a static type, the contents of the `semi::static_map` will on -Fabian -@hogliux \ No newline at end of file +@hogliux