summaryrefslogtreecommitdiffstats
path: root/src/failable/ops
diff options
context:
space:
mode:
Diffstat (limited to 'src/failable/ops')
-rw-r--r--src/failable/ops/and.rs2
-rw-r--r--src/failable/ops/bool.rs2
-rw-r--r--src/failable/ops/map.rs2
-rw-r--r--src/failable/ops/not.rs2
-rw-r--r--src/failable/ops/or.rs2
-rw-r--r--src/failable/ops/xor.rs2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/failable/ops/and.rs b/src/failable/ops/and.rs
index 9c1d547..1d195a6 100644
--- a/src/failable/ops/and.rs
+++ b/src/failable/ops/and.rs
@@ -6,7 +6,7 @@
//! AND implementation.
//!
-//! Will be automatically included when incluing `filter::Filter`, so importing this module
+//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!
diff --git a/src/failable/ops/bool.rs b/src/failable/ops/bool.rs
index def51dd..82c0ac9 100644
--- a/src/failable/ops/bool.rs
+++ b/src/failable/ops/bool.rs
@@ -6,7 +6,7 @@
//! FailableBool Filter implementation, so we can insert this in filter construction
//!
-//! Will be automatically included when incluing `filter::Filter`, so importing this module
+//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!
diff --git a/src/failable/ops/map.rs b/src/failable/ops/map.rs
index 1d51e6c..ccec3d3 100644
--- a/src/failable/ops/map.rs
+++ b/src/failable/ops/map.rs
@@ -6,7 +6,7 @@
//! Map implementation.
//!
-//! Will be automatically included when incluing `filter::Filter`, so importing this module
+//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!
use std::marker::PhantomData;
diff --git a/src/failable/ops/not.rs b/src/failable/ops/not.rs
index 3712024..25c3e3b 100644
--- a/src/failable/ops/not.rs
+++ b/src/failable/ops/not.rs
@@ -6,7 +6,7 @@
//! NOT implementation.
//!
-//! Will be automatically included when incluing `filter::Filter`, so importing this module
+//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!
diff --git a/src/failable/ops/or.rs b/src/failable/ops/or.rs
index 311e5dd..45289c3 100644
--- a/src/failable/ops/or.rs
+++ b/src/failable/ops/or.rs
@@ -6,7 +6,7 @@
//! OR implementation.
//!
-//! Will be automatically included when incluing `filter::Filter`, so importing this module
+//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!
diff --git a/src/failable/ops/xor.rs b/src/failable/ops/xor.rs
index 23c37c4..ecc38ce 100644
--- a/src/failable/ops/xor.rs
+++ b/src/failable/ops/xor.rs
@@ -6,7 +6,7 @@
//! XOR implementation.
//!
-//! Will be automatically included when incluing `filter::Filter`, so importing this module
+//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!