Skip to content

Commit

Permalink
Updated .gitignore and README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrgfogh committed Apr 19, 2024
1 parent 894ea8f commit cd8876f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/.vs
/out
/cmake-build-debug-wsl
/cmake-build-debug
/.idea
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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<PointerType>`
Expand All @@ -15,4 +15,4 @@ Ensures that a pointer can never be null.

## `lazy_init<T>`

Ensures that the wrapped data is initialized exactly once, in a thread- and exception safe manner.
Ensures that the wrapped data is initialized exactly once, in an exception safe manner.

0 comments on commit cd8876f

Please sign in to comment.