aboutsummaryrefslogtreecommitdiff
path: root/src/ser.rs
diff options
context:
space:
mode:
authorGarrett Berg <vitiral@gmail.com>2017-07-24 09:18:47 -0600
committerGarrett Berg <vitiral@gmail.com>2017-07-24 09:18:47 -0600
commit8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695 (patch)
tree717efbbf75fd46f62460a7e9b7428c2cabb83676 /src/ser.rs
parent0adce506fa5ef2c5d6a545bc3a893d3a392829a3 (diff)
downloadmilf-rs-8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695.tar.gz
milf-rs-8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695.zip
use ignore rather than no_run for toml blocks
Diffstat (limited to 'src/ser.rs')
-rw-r--r--src/ser.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ser.rs b/src/ser.rs
index a267b3a..fb9f424 100644
--- a/src/ser.rs
+++ b/src/ser.rs
@@ -263,14 +263,14 @@ impl<'a> Serializer<'a> {
///
/// Instead of:
///
- /// ```toml,no_run
+ /// ```ignore
/// single = "no newlines"
/// text = "\nfoo\nbar\n"
/// ```
///
/// You will have:
///
- /// ```toml,no_run
+ /// ```ignore
/// single = "no newlines"
/// text = '''
/// foo
@@ -297,13 +297,13 @@ impl<'a> Serializer<'a> {
///
/// Instead of:
///
- /// ```toml,no_run
+ /// ```ignore
/// array = ["foo", "bar"]
/// ```
///
/// You will have:
///
- /// ```toml,no_run
+ /// ```ignore
/// array = [
/// "foo",
/// "bar",