diff options
-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", |