aboutsummaryrefslogtreecommitdiff
path: root/src/ser.rs
diff options
context:
space:
mode:
authorGarrett Berg <vitiral@gmail.com>2017-07-30 10:18:00 -0600
committerGarrett Berg <vitiral@gmail.com>2017-07-30 10:18:00 -0600
commitbfdbf1fcbc30ba30c5c07e3bbe6fe7525046ec65 (patch)
tree49eadd9897af407b0494a365b5dbfedec8cf7b04 /src/ser.rs
parentdb86a5d0a88a2cfffd6d0a45c5d0cc31f345bc36 (diff)
downloadmilf-rs-bfdbf1fcbc30ba30c5c07e3bbe6fe7525046ec65.tar.gz
milf-rs-bfdbf1fcbc30ba30c5c07e3bbe6fe7525046ec65.zip
doc fixes
Diffstat (limited to 'src/ser.rs')
-rw-r--r--src/ser.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ser.rs b/src/ser.rs
index 721fbf1..b055f28 100644
--- a/src/ser.rs
+++ b/src/ser.rs
@@ -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",