aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ser.rs8
1 files changed, 4 insertions, 4 deletions
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",