summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorlord <robert@lord.io>2020-02-11 16:09:40 -0500
committerGitHub <noreply@github.com>2020-02-11 16:09:40 -0500
commit5e75b0446d771f527d65ecc7ba34e2276eb2bf21 (patch)
tree0a1e4e557541cc2075fd473c070d0c671179d76e /tokio-macros
parentd49e6ae1b3817d49e0413232d705dc64232f27db (diff)
Fix doc comment spelling in lib.rs (#2233)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index 738923b1..19715113 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -122,7 +122,7 @@ pub fn main_basic(args: TokenStream, item: TokenStream) -> TokenStream {
entry::main(args, item, false)
}
-/// Marks async function to be executed by runtime, suitable to test enviornment
+/// Marks async function to be executed by runtime, suitable to test environment
///
/// ## Options:
///
@@ -153,7 +153,7 @@ pub fn test_threaded(args: TokenStream, item: TokenStream) -> TokenStream {
entry::test(args, item, true)
}
-/// Marks async function to be executed by runtime, suitable to test enviornment
+/// Marks async function to be executed by runtime, suitable to test environment
///
/// ## Options:
///
@@ -184,7 +184,7 @@ pub fn test(args: TokenStream, item: TokenStream) -> TokenStream {
entry::old::test(args, item)
}
-/// Marks async function to be executed by runtime, suitable to test enviornment
+/// Marks async function to be executed by runtime, suitable to test environment
///
/// ## Options:
///