summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPaul Woolcock <paul@woolcock.us>2018-08-25 08:07:12 -0400
committerPaul Woolcock <paul@woolcock.us>2018-08-25 09:13:49 -0400
commit45f4cbbbfe4777613359972e73c30235a0b37f2c (patch)
treee59998dc2caa1cdd5b7830132715f99344169131 /README.md
parentc5788b8bd5ada1db78a3ccd1f9b388a2db03438a (diff)
Move the `toml` helpers to `elefren::helpers::toml`
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 59f061d..c16743d 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ use std::error::Error;
use elefren::prelude::*;
use elefren::apps::prelude::*;
-use elefren::data::toml; // requires `features = ["toml"]`
+use elefren::helpers::toml; // requires `features = ["toml"]`
fn main() -> Result<(), Box<Error>> {
let mastodon = if let Ok(data) = toml::from_file("mastodon-data.toml") {