From f7e9946c1f5d2f71ba4abe0497edac1dd4fd530e Mon Sep 17 00:00:00 2001 From: Alessandro Gentilini Date: Thu, 17 Mar 2016 20:32:18 +0100 Subject: [PATCH] Fix typo (?) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1be0145..3132218 100644 --- a/README.md +++ b/README.md @@ -114,11 +114,11 @@ and plotting code in sync requires a lot of effort when the C++ code frequently changes. Additionally, the python yaml parser was not able to cope with files that exceed a few hundred megabytes in size. -Therefore, I was looking for a C++ plotting library that was extremely to use -and easy to add into an existing codebase, preferrably header-only. When I found +Therefore, I was looking for a C++ plotting library that was extremely easy to use +and to add into an existing codebase, preferrably header-only. When I found none, I decided to write one myself, which is basically a C++ wrapper around matplotlib. As you can see from the above examples, plotting data and saving it -to an image file can be done is as few as two lines of code. +to an image file can be done as few as two lines of code. The general approach of providing a simple C++ API for utilizing python code was later generalized and extracted into a separate, more powerful