summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md (renamed from ReadMe.md)7
1 files changed, 5 insertions, 2 deletions
diff --git a/ReadMe.md b/README.md
index 788a2b0..8cc6e76 100644
--- a/ReadMe.md
+++ b/README.md
@@ -2,6 +2,10 @@
[![License: GPL-2.0](https://img.shields.io/badge/license-GPL--2.0-blue.svg)](LICENSE)
+## Brief:
+
+A C++ library with additional modules for your C++ SDLC.
+
## Getting Started:
Here is an example of how astdx::opt works.
@@ -11,7 +15,7 @@ Here is an example of how astdx::opt works.
int main(int argc, char** argv)
{
- auto opt = astdx::opt(astdx::eval_eq(50, 50)).expect("stdex::eval_eq, does not match!");
+ auto opt = astdx::opt(astdx::eval_eq(50, 50)).expect("astdx::eval_eq, does not match!");
opt = astdx::opt(astdx::eval_eq(50, 40));
opt.expect("this time it doesn't.");
@@ -19,4 +23,3 @@ int main(int argc, char** argv)
}
```
-# Licensed under GPL-2