aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--src/ser.rs10
2 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index c9e484b..e4c5407 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ before_script:
script:
- cargo test
- rustdoc --test README.md -L target
- - cargo doc --no-deps
+ - test "$TRAVIS_RUST_VERSION" != "1.15.0" && cargo doc --no-deps || echo "skipping cargo doc"
after_success:
- travis-cargo --only nightly doc-upload
- travis-cargo coveralls --no-sudo
diff --git a/src/ser.rs b/src/ser.rs
index bd13365..13d4584 100644
--- a/src/ser.rs
+++ b/src/ser.rs
@@ -273,15 +273,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
@@ -311,13 +311,13 @@ impl<'a> Serializer<'a> {
///
/// Instead of:
///
- /// ```ignore
+ /// ```toml,ignore
/// array = ["foo", "bar"]
/// ```
///
/// You will have:
///
- /// ```ignore
+ /// ```toml,ignore
/// array = [
/// "foo",
/// "bar",