docs(modules): fix typos

closes #2914
This commit is contained in:
Eric Lee Carraway
2015-07-06 22:55:50 -05:00
committed by Tobias Bosch
parent abc1580fa9
commit 3869818d8f
3 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ Benchpress is a framework for e2e performance tests.
# Why?
There are so called "micro benchmarks" that esentially use a stop watch in the browser to measure time
There are so called "micro benchmarks" that essentially use a stop watch in the browser to measure time
(e.g. via `performance.now()`). This approach is limited to time, and in some cases memory
(Chrome with special flags), as metric. It does not allow to measure:
@ -80,7 +80,7 @@ index.html:
var container = document.getElementById('container');
var complexHtmlString = '...'; // TODO
function reset() { cotainer.innerHTML = ''; }
function reset() { container.innerHTML = ''; }
function fill() {
container.innerHTML = complexHtmlString;