summaryrefslogtreecommitdiff
path: root/src/exun.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/exun.rs')
-rw-r--r--src/exun.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exun.rs b/src/exun.rs
index 53e877b..f6bf24e 100644
--- a/src/exun.rs
+++ b/src/exun.rs
@@ -235,7 +235,7 @@ impl<E, U> Exun<E, U> {
///
/// ```should_panic
/// let path = std::env::var("IMPORTANT_PATH")
- /// .expect("env variable `IMPORTANT_PATH` should be set by script.sh")
+ /// .expect("env variable `IMPORTANT_PATH` should be set by test.sh");
/// ```
///
/// **Hint:** If you're having trouble remembering how to phrase expect
@@ -311,7 +311,7 @@ impl<E, U> Exun<E, U> {
/// use exun::*;
///
/// let x: Exun<u32, &str> = Expected(2);
- /// x.unwrap_unexpected(); // panics wirh `2`
+ /// x.unwrap_unexpected(); // panics with `2`
/// ```
///
/// ```