- added more text in the main readme
- added a clarification for the charts of the runtime benchmarks
- small doc changes
- updated html
diff --git a/doc/html_generated/assertions.html b/doc/html_generated/assertions.html
index 11eaf8d..21b0bc5 100644
--- a/doc/html_generated/assertions.html
+++ b/doc/html_generated/assertions.html
@@ -65,7 +65,7 @@
These asserts don't use templates to decompose the comparison expressions for the left and right parts.
-These have the same guarantees as the expression decomposing ones - just less templates - [**20% faster**](benchmarks.html#cost-of-an-assertion-macro) for compile times.
+These have the same guarantees as the expression decomposing ones - just less templates - [**25%-45% faster**](benchmarks.html#cost-of-an-assertion-macro) for compile times.
```<LEVEL>``` is one of 3 possible: ```REQUIRE```/```CHECK```/```WARN```.
@@ -80,11 +80,11 @@
## Fast asserts
-These are the faster versions of the binary and unary asserts - by [**30-70%**](benchmarks.html#cost-of-an-assertion-macro) of compile time.
+These are the faster versions of the binary and unary asserts - by [**60-80%**](benchmarks.html#cost-of-an-assertion-macro) of compile time.
The difference is they don't evaluate the expression in a ```try/catch``` block - if the expression throws the whole test case ends.
-There is also the [**```DOCTEST_CONFIG_SUPER_FAST_ASSERTS```**](configuration.html#doctest_config_super_fast_asserts) config identifier that makes them even faster by another [**35-80%**](benchmarks.html#cost-of-an-assertion-macro)!
+There is also the [**```DOCTEST_CONFIG_SUPER_FAST_ASSERTS```**](configuration.html#doctest_config_super_fast_asserts) config identifier that makes them even faster by another [**50-80%**](benchmarks.html#cost-of-an-assertion-macro)!
```<LEVEL>``` is one of 3 possible: ```REQUIRE```/```CHECK```/```WARN```.