summaryrefslogtreecommitdiffstats
path: root/src/ops
diff options
context:
space:
mode:
Diffstat (limited to 'src/ops')
-rw-r--r--src/ops/and.rs2
-rw-r--r--src/ops/bool.rs2
-rw-r--r--src/ops/failable.rs2
-rw-r--r--src/ops/map.rs2
-rw-r--r--src/ops/not.rs2
-rw-r--r--src/ops/or.rs2
-rw-r--r--src/ops/xor.rs2
7 files changed, 7 insertions, 7 deletions
diff --git a/src/ops/and.rs b/src/ops/and.rs
index 281b906..eb9f347 100644
--- a/src/ops/and.rs
+++ b/src/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.
//!
use filter::Filter;
diff --git a/src/ops/bool.rs b/src/ops/bool.rs
index 6079e22..23c662b 100644
--- a/src/ops/bool.rs
+++ b/src/ops/bool.rs
@@ -6,7 +6,7 @@
//! Bool 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.
//!
use filter::Filter;
diff --git a/src/ops/failable.rs b/src/ops/failable.rs
index 5a92ba7..a3277dc 100644
--- a/src/ops/failable.rs
+++ b/src/ops/failable.rs
@@ -6,7 +6,7 @@
//! Filter -> FailableFilter implementations
//!
-//! 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/ops/map.rs b/src/ops/map.rs
index b7a2028..bc8e59f 100644
--- a/src/ops/map.rs
+++ b/src/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/ops/not.rs b/src/ops/not.rs
index 3fb9db0..bd65fcb 100644
--- a/src/ops/not.rs
+++ b/src/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.
//!
use filter::Filter;
diff --git a/src/ops/or.rs b/src/ops/or.rs
index a89d8cc..837c3df 100644
--- a/src/ops/or.rs
+++ b/src/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.
//!
use filter::Filter;
diff --git a/src/ops/xor.rs b/src/ops/xor.rs
index c5c1021..b1cf8e5 100644
--- a/src/ops/xor.rs
+++ b/src/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.
//!
use filter::Filter;