back out doc changes for now

This commit is contained in:
Garrett Berg 2017-07-30 10:19:32 -06:00
parent 003a65fc9f
commit 9443fbf01f

View file

@ -273,15 +273,15 @@ impl<'a> Serializer<'a> {
/// ///
/// Instead of: /// Instead of:
/// ///
/// ```toml,ignore /// ```ignore
/// single = "no newlines" /// single = "no newlines"
/// text = "\nfoo\nbar\n" /// text = "\nfoo\nbar\n"
/// ``` /// ```
/// ///
/// You will have: /// You will have:
/// ///
/// ```toml,ignore /// ```ignore
/// single = 'no newlines' /// single = "no newlines"
/// text = ''' /// text = '''
/// foo /// foo
/// bar /// bar
@ -311,13 +311,13 @@ impl<'a> Serializer<'a> {
/// ///
/// Instead of: /// Instead of:
/// ///
/// ```toml,ignore /// ```ignore
/// array = ["foo", "bar"] /// array = ["foo", "bar"]
/// ``` /// ```
/// ///
/// You will have: /// You will have:
/// ///
/// ```toml,ignore /// ```ignore
/// array = [ /// array = [
/// "foo", /// "foo",
/// "bar", /// "bar",