- 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/benchmarks.html b/doc/html_generated/benchmarks.html
index 82f28ca..efed25c 100644
--- a/doc/html_generated/benchmarks.html
+++ b/doc/html_generated/benchmarks.html
@@ -171,31 +171,22 @@
 
 Note that the assert always passes - the goal should be to optimize for the common case - lots of passing test cases and a few that maybe fail.
 
-| doctest             | assert  | + info  |
-|---------------------|---------|---------|
-| MSVC Debug          |    5.29 |   14.32 | 
-| MSVC Release        |    0.77 |    1.62 | 
-| MinGW GCC Debug     |    2.25 |    4.71 | 
-| MinGW GCC Release   |    0.39 |    0.90 | 
-| Linux GCC Debug     |    2.84 |    5.13 | 
-| Linux GCC Release   |    0.30 |    0.69 | 
-| Linux Clang Debug   |    2.47 |    5.02 | 
-| Linux Clang Release |    0.41 |    0.75 | 
-
-| Catch               | assert  | + info  |
-|---------------------|---------|---------|
-| MSVC Debug          |  365.37 |  621.78 | 
-| MSVC Release        |    7.04 |   18.64 | 
-| MinGW GCC Debug     |    9.22 |   21.89 | 
-| MinGW GCC Release   |    7.29 |   13.95 | 
-| Linux GCC Debug     |   11.17 |   24.79 | 
-| Linux GCC Release   |    6.45 |   12.68 | 
-| Linux Clang Debug   |   10.40 |   22.64 | 
-| Linux Clang Release |    5.81 |   13.83 | 
+| doctest             | assert  | + info  |                                 | Catch               | assert  | + info  |
+|---------------------|---------|---------|-|---------------------|---------|---------|
+| MSVC Debug          |    5.29 |   14.32 | | MSVC Debug          |  365.37 |  621.78 |
+| MSVC Release        |    0.77 |    1.62 | | MSVC Release        |    7.04 |   18.64 |
+| MinGW GCC Debug     |    2.25 |    4.71 | | MinGW GCC Debug     |    9.22 |   21.89 |
+| MinGW GCC Release   |    0.39 |    0.90 | | MinGW GCC Release   |    7.29 |   13.95 |
+| Linux GCC Debug     |    2.84 |    5.13 | | Linux GCC Debug     |   11.17 |   24.79 |
+| Linux GCC Release   |    0.30 |    0.69 | | Linux GCC Release   |    6.45 |   12.68 |
+| Linux Clang Debug   |    2.47 |    5.02 | | Linux Clang Debug   |   10.40 |   22.64 |
+| Linux Clang Release |    0.41 |    0.75 | | Linux Clang Release |    5.81 |   13.83 |
 
 <img src="../../scripts/data/benchmarks/runtime_info.png" width="430" align="right">
 <img src="../../scripts/data/benchmarks/runtime_assert.png" width="430">
 
+Note that in these graphs the values for ```MSVC Release``` for **Catch** are 10 times smaller than the real ones (from the tables above) because google spreadsheet didn't allow me to create a bar chart with values that were so different.
+
 ### Conclusion
 
 **doctest** is significantly faster - between 4 and 40 times.