Merge pull request #5 from markhildreth/fixed-typo

Fixed typo in documentation
This commit is contained in:
Mark Hildreth 2021-02-06 23:51:45 -05:00 committed by GitHub
commit c791dd078e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -44,7 +44,7 @@ impl AsyncTestContext for MyAsyncContext {
} }
async fn teardown(self) { 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!"); assert_eq!(ctx.value, "Hello, World!");
} }
``` ```
License: MIT

View file

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