summaryrefslogtreecommitdiffstats
path: root/src/output/mod.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-02-10 18:14:56 +0000
committerBen S <ogham@bsago.me>2015-02-10 18:14:56 +0000
commit2906b8676a9b3e76014d65a9940bf576ce1e4852 (patch)
tree7a27cd4a2d18ef53c4a805ea7707b0dfa5b12286 /src/output/mod.rs
parente39a20a5d4e522157f6ab09a2d90ef8cd7f46ee3 (diff)
Translate month names into the user's locale
This has been mostly done with changes in the datetime crate's suddenly supporting locales. It's still important that the user's locale is touched only once and cached from that point on, so a struct in output::details has been made public, along with that module. This will change later as that object gains more and more uses thoughout the codes.
Diffstat (limited to 'src/output/mod.rs')
-rw-r--r--src/output/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/mod.rs b/src/output/mod.rs
index 054e6bf..22b8726 100644
--- a/src/output/mod.rs
+++ b/src/output/mod.rs
@@ -1,5 +1,5 @@
mod grid;
-mod details;
+pub mod details;
mod lines;
pub use self::grid::Grid;