Skip to content

Commit 8ab2752

Browse files
authored
Fix typo in known_limitations.md (#674)
Changed - Is is not possible to benchmark functions in crates that do not provide an `rlib`. To - It is not possible to benchmark functions in crates that do not provide an `rlib`.
1 parent a211230 commit 8ab2752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/src/user_guide/known_limitations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This results in several limitations:
1111
are compiled as a separate crate, and non-`pub` functions are not visible to the benchmarks.
1212
* It is not possible to benchmark functions in binary crates. Binary crates cannot be dependencies of other
1313
crates, and that includes external tests and benchmarks ([see here](https://github.com/rust-lang/cargo/issues/4316) for more details)
14-
* Is is not possible to benchmark functions in crates that do not provide an `rlib`.
14+
* It is not possible to benchmark functions in crates that do not provide an `rlib`.
1515

1616
Criterion.rs cannot currently solve these issues. An [experimental RFC](https://github.com/rust-lang/rust/issues/50297) is being implemented to enable custom test and benchmarking frameworks.
1717

@@ -21,4 +21,4 @@ Example:
2121

2222
```toml
2323
criterion = { version = '...', features=['real_blackbox'] }
24-
```
24+
```

0 commit comments

Comments
 (0)