From f9cbfdd018ef7e36aeaf3bf4db096e1dc0ef47eb Mon Sep 17 00:00:00 2001 From: "an.tsouchlos" Date: Thu, 10 Feb 2022 21:17:41 +0000 Subject: [PATCH] Fixed typos in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b291ab2..08b385e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Meant for systems with very few resources, such as embedded systems. ## Overview -During compile-time, the string to be formatted is preprocessed to the point, only the actual values to be formatted +During compile-time, the string to be formatted is preprocessed to the point only the actual values to be formatted have to be written (If they are not available at compile time). For example `One number: {:03}; And another one: {:05.3}` is preprocessed into `One number: 000; And another one: 00.000`. @@ -21,8 +21,8 @@ Disclaimer: The actual formatting code is largely shamelessly stolen from `fmtli In order to keep it as lightweight and optimizable as possible, `const_fmt` is implemented as a header-only library. -This means that including in a project is as simple as cloning this project (or e.g. adding it as a submodule) -and adding the repository root folder to the compile include directories. +This means that using it in a project is as simple as cloning this repo (or e.g. adding it as a submodule) +and adding the repository root folder to the compiler include directories. ## Building and running the tests