From ca1316e2fe2d89e2659a4d92c13eb8b9b9d6c731 Mon Sep 17 00:00:00 2001 From: Amadeusz Leonardo Juskowiak Date: Tue, 6 Dec 2016 12:06:40 +0100 Subject: [PATCH] typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b26eb7..7a65c4a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ in an easy to use API. Furthermore a basic unit of computation is a polynomial, arithmetic operations can be done using `x` symbols. You can use this library in your own projects as mathematical evaluator or as a standalone, -command line calculator by using `xxcalc` binary. Internally it uses hand-mande tokenizer and +command line calculator by using `xxcalc` binary. Internally it uses hand-made tokenizer and a Dijskatra's shunting-yard algorithm to convert infix form into Reverse Polish Notation, which is later evaluated. Please see the [complete documentation](https://alfanick.github.io/xxcalc-rs/xxcalc/index.html) for the implementation details. @@ -127,7 +127,7 @@ The projects is thoroughly unit tested, some examples are directly provided in t documentation. Use `cargo test` to run the unit tests. If you have a Rust nighly compiler you can run some built-in bencharks using `cargo bench`. -Some more extensive benchmarks (using large expressions) can be run using `carbo bench -- --ignored`. +Some more extensive benchmarks (using large expressions) can be run using `cargo bench -- --ignored`. # License