From cd8876f8f6bfd769257ba82a4abe1a8d9b2e9f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Fogh?= Date: Fri, 19 Apr 2024 22:04:21 +0200 Subject: [PATCH] Updated .gitignore and README.md. --- .gitignore | 3 +++ README.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8ae252a..5edad53 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ /.vs /out +/cmake-build-debug-wsl +/cmake-build-debug +/.idea diff --git a/README.md b/README.md index 5734de6..85b79d1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Small C++ Wrapper Classes -The classes in this library make it easier to enforce envariants in larger classes. +The classes in this library make it easier to enforce invariants in larger classes. None of them serve a business need directly, but they all make it easier to write classes that do. ## `propagate_const` @@ -15,4 +15,4 @@ Ensures that a pointer can never be null. ## `lazy_init` -Ensures that the wrapped data is initialized exactly once, in a thread- and exception safe manner. \ No newline at end of file +Ensures that the wrapped data is initialized exactly once, in an exception safe manner. \ No newline at end of file