diff options
author | Garrett Berg <vitiral@gmail.com> | 2017-07-30 10:18:00 -0600 |
---|---|---|
committer | Garrett Berg <vitiral@gmail.com> | 2017-07-30 10:18:00 -0600 |
commit | bfdbf1fcbc30ba30c5c07e3bbe6fe7525046ec65 (patch) | |
tree | 49eadd9897af407b0494a365b5dbfedec8cf7b04 /src | |
parent | db86a5d0a88a2cfffd6d0a45c5d0cc31f345bc36 (diff) | |
download | milf-rs-bfdbf1fcbc30ba30c5c07e3bbe6fe7525046ec65.tar.gz milf-rs-bfdbf1fcbc30ba30c5c07e3bbe6fe7525046ec65.zip |
doc fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/ser.rs | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -265,15 +265,15 @@ impl<'a> Serializer<'a> { /// /// Instead of: /// - /// ```ignore + /// ```toml,ignore /// single = "no newlines" /// text = "\nfoo\nbar\n" /// ``` /// /// You will have: /// - /// ```ignore - /// single = "no newlines" + /// ```toml,ignore + /// single = 'no newlines' /// text = ''' /// foo /// bar @@ -299,13 +299,13 @@ impl<'a> Serializer<'a> { /// /// Instead of: /// - /// ```ignore + /// ```toml,ignore /// array = ["foo", "bar"] /// ``` /// /// You will have: /// - /// ```ignore + /// ```toml,ignore /// array = [ /// "foo", /// "bar", |