BUG: Make error module private again

This commit is contained in:
bluss
2017-08-05 18:06:56 +02:00
parent 6ad4ca7a77
commit 27b8a0cb0c
+3 -2
View File
@@ -53,13 +53,14 @@ use serde::{Serialize, Deserialize, Serializer, Deserializer};
mod array;
mod array_string;
mod range;
pub mod errors;
mod errors;
pub use array::Array;
pub use range::RangeArgument;
use array::Index;
pub use array_string::ArrayString;
use errors::*;
use errors::PubCrateNew;
pub use errors::CapacityError;
unsafe fn new_array<A: Array>() -> A {