summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/construction.rs (renamed from src/construction/i2c.rs)2
-rw-r--r--src/construction/mod.rs3
2 files changed, 1 insertions, 4 deletions
diff --git a/src/construction/i2c.rs b/src/construction.rs
index 8c63a4b..ab100fd 100644
--- a/src/construction/i2c.rs
+++ b/src/construction.rs
@@ -1,4 +1,4 @@
-//! Constructor/destructor functions for devices using I2C interface.
+//! Constructor/destructor functions.
extern crate embedded_hal as hal;
use hal::blocking;
diff --git a/src/construction/mod.rs b/src/construction/mod.rs
deleted file mode 100644
index 0873d88..0000000
--- a/src/construction/mod.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-//! Construction / destruction functions
-
-mod i2c;