From 8b7e1b69ad654cdbd7e2120e49e4d75d02f0a695 Mon Sep 17 00:00:00 2001 From: Garrett Berg Date: Mon, 24 Jul 2017 09:18:47 -0600 Subject: use ignore rather than no_run for toml blocks --- src/ser.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ser.rs') 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", -- cgit v1.2.3