diff options
author | Alex Auvolat <alex@adnab.me> | 2021-10-13 18:05:49 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-10-13 18:05:49 +0200 |
commit | dd881e2e606485ea0169ed3984977d84c3f3e0ce (patch) | |
tree | a54fae8d10aca2ea97f99e29cd9719ab898132f4 /src/util.rs | |
parent | 7eea46dcf3f93377163a51288a1e9a807584256c (diff) | |
download | netapp-dd881e2e606485ea0169ed3984977d84c3f3e0ce.tar.gz netapp-dd881e2e606485ea0169ed3984977d84c3f3e0ce.zip |
Add a modest integration test
Diffstat (limited to 'src/util.rs')
-rw-r--r-- | src/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.rs b/src/util.rs index e5b57ec..a87f779 100644 --- a/src/util.rs +++ b/src/util.rs @@ -27,7 +27,7 @@ where /// from a watcher that tells us when to exit. /// Usefull in a select statement to interrupt another /// future: -/// ``` +/// ```ignore /// select!( /// _ = a_long_task() => Success, /// _ = await_exit(must_exit) => Interrupted, |