Skip to content

Commit

Permalink
refactor(encoder): stop exporting all the Error variants
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
You now need to access the variants through mustache::encoder::Error::*
  • Loading branch information
Ryman committed Jul 13, 2016
1 parent beae862 commit bebb7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoder.rs
Expand Up @@ -4,7 +4,7 @@ use std::error;
use rustc_serialize;

use super::{Data, StrVal, Bool, VecVal, Map, OptVal};
pub use self::Error::*;
use self::Error::*;

#[derive(Default)]
pub struct Encoder {
Expand Down

0 comments on commit bebb7a5

Please sign in to comment.