diff --git a/README.md b/README.md index ea8ad8e..6b449b9 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index e5cc593..98dcb12 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,7 +42,7 @@ //! } //! //! async fn teardown(self) { -//! // Perform any teradown you wish. +//! // Perform any teardown you wish. //! } //! } //!