summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-10-05 19:41:37 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-10-05 19:41:37 +0200
commit453f17fcdd728c7024f00d4fa618596451a6c283 (patch)
tree9fe8b2cef73d991886440d40a885550f2f074ce7
parent57b2fc454faeeb72a3d7573ce0ae656a62f1604b (diff)
Fix typo
-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
-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
13 files changed, 13 insertions, 13 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.
//!
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;