diff options
author | Garrett Berg <vitiral@gmail.com> | 2017-07-24 09:18:47 -0600 |
---|---|---|
committer | Garrett Berg <vitiral@gmail.com> | 2017-07-24 09:18:47 -0600 |
commit | 8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695 (patch) | |
tree | 717efbbf75fd46f62460a7e9b7428c2cabb83676 /src | |
parent | 0adce506fa5ef2c5d6a545bc3a893d3a392829a3 (diff) | |
download | milf-rs-8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695.tar.gz milf-rs-8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695.zip |
use ignore rather than no_run for toml blocks
Diffstat (limited to 'src')
-rw-r--r-- | src/ser.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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", |