Fixed typo in documentation

This commit is contained in:
Mark Hildreth 2021-02-06 23:48:26 -05:00
parent 0d78b70786
commit 4e3f4ca759
2 changed files with 4 additions and 2 deletions

View file

@ -44,7 +44,7 @@ impl AsyncTestContext for MyAsyncContext {
}
async fn teardown(self) {
// Perform any teradown you wish.
// Perform any teardown you wish.
}
}
@ -54,3 +54,5 @@ async fn test_works(ctx: &mut MyAsyncContext) {
assert_eq!(ctx.value, "Hello, World!");
}
```
License: MIT

View file

@ -42,7 +42,7 @@
//! }
//!
//! async fn teardown(self) {
//! // Perform any teradown you wish.
//! // Perform any teardown you wish.
//! }
//! }
//!