From 35f01c34ad74115367aeb770d84c174863fe124b Mon Sep 17 00:00:00 2001 From: Samar Dhwoj Acharya Date: Fri, 12 Oct 2018 00:37:38 -0500 Subject: [PATCH] minor spelling fix (#1546) --- en/lessons/libraries/benchee.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/lessons/libraries/benchee.md b/en/lessons/libraries/benchee.md index 845cbf5111..0c95883f1a 100644 --- a/en/lessons/libraries/benchee.md +++ b/en/lessons/libraries/benchee.md @@ -9,7 +9,7 @@ We can't just guess about which functions are fast and which are slow - we need # About Benchee -While there is a [function in Erlang](http://erlang.org/doc/man/timer.html#tc-1) that can be used for very basic measurement of a function's execution time, it's not as nice to use as some of the available tools and it doesn't give you multiple measurments to get good statistics from, so we're going to use [Benchee](https://github.com/PragTob/benchee). Benchee provides us with a range of statistics with easy comparisons between scenarios, a great feature that allows us to test different inputs to the functions we're benchmarking, and several different formatters that we can use to display our results, as well as the ability to write your own formatter if desired. +While there is a [function in Erlang](http://erlang.org/doc/man/timer.html#tc-1) that can be used for very basic measurement of a function's execution time, it's not as nice to use as some of the available tools and it doesn't give you multiple measurements to get good statistics from, so we're going to use [Benchee](https://github.com/PragTob/benchee). Benchee provides us with a range of statistics with easy comparisons between scenarios, a great feature that allows us to test different inputs to the functions we're benchmarking, and several different formatters that we can use to display our results, as well as the ability to write your own formatter if desired. # Usage