Skip to content

Commit

Permalink
Fix function names in lib
Browse files Browse the repository at this point in the history
Signed-off-by: Luc Perkins <luc@timber.io>
  • Loading branch information
Luc Perkins committed Dec 21, 2020
1 parent e16d49f commit b3de51e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/remap-functions/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ mod to_bool;
mod to_float;
#[cfg(feature = "to_int")]
mod to_int;
#[cfg(feature = "to_syslog_level")]
mod to_syslog_level;
#[cfg(feature = "to_string")]
mod to_string;
#[cfg(feature = "to_syslog_level")]
mod to_syslog_level;
#[cfg(feature = "to_timestamp")]
mod to_timestamp;
#[cfg(feature = "tokenize")]
Expand Down Expand Up @@ -201,10 +201,10 @@ pub use to_bool::ToBool;
pub use to_float::ToFloat;
#[cfg(feature = "to_int")]
pub use to_int::ToInt;
#[cfg(feature = "to_syslog_level")]
pub use to_syslog_level::ToSyslogLevel;
#[cfg(feature = "to_string")]
pub use to_string::ToString;
#[cfg(feature = "to_syslog_level")]
pub use to_syslog_level::ToSyslogLevel;
#[cfg(feature = "to_timestamp")]
pub use to_timestamp::ToTimestamp;
#[cfg(feature = "tokenize")]
Expand Down

0 comments on commit b3de51e

Please sign in to comment.