diff options
author | Garrett Berg <vitiral@gmail.com> | 2017-07-30 10:19:32 -0600 |
---|---|---|
committer | Garrett Berg <vitiral@gmail.com> | 2017-07-30 10:19:32 -0600 |
commit | 09c0afaebe639522bd4e85e3fcd90f6d7ff5860e (patch) | |
tree | 99027021f2692c2e6c7c9c287419ec8f785a72d5 /src | |
parent | 06df8e5a47904250739a3751cfeb43a9b897884d (diff) | |
download | milf-rs-09c0afaebe639522bd4e85e3fcd90f6d7ff5860e.tar.gz milf-rs-09c0afaebe639522bd4e85e3fcd90f6d7ff5860e.zip |
back out doc changes for now
Diffstat (limited to 'src')
-rw-r--r-- | src/ser.rs | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -273,15 +273,15 @@ impl<'a> Serializer<'a> { /// /// Instead of: /// - /// ```toml,ignore + /// ```ignore /// single = "no newlines" /// text = "\nfoo\nbar\n" /// ``` /// /// You will have: /// - /// ```toml,ignore - /// single = 'no newlines' + /// ```ignore + /// single = "no newlines" /// text = ''' /// foo /// bar @@ -311,13 +311,13 @@ impl<'a> Serializer<'a> { /// /// Instead of: /// - /// ```toml,ignore + /// ```ignore /// array = ["foo", "bar"] /// ``` /// /// You will have: /// - /// ```toml,ignore + /// ```ignore /// array = [ /// "foo", /// "bar", |