back out doc changes for now
This commit is contained in:
parent
003a65fc9f
commit
9443fbf01f
10
src/ser.rs
10
src/ser.rs
|
@ -273,15 +273,15 @@ impl<'a> Serializer<'a> {
|
|||
///
|
||||
/// Instead of:
|
||||
///
|
||||
/// ```toml,ignore
|
||||
/// ```ignore
|
||||
/// single = "no newlines"
|
||||
/// text = "\nfoo\nbar\n"
|
||||
/// ```
|
||||
///
|
||||
/// You will have:
|
||||
///
|
||||
/// ```toml,ignore
|
||||
/// single = 'no newlines'
|
||||
/// ```ignore
|
||||
/// single = "no newlines"
|
||||
/// text = '''
|
||||
/// foo
|
||||
/// bar
|
||||
|
@ -311,13 +311,13 @@ impl<'a> Serializer<'a> {
|
|||
///
|
||||
/// Instead of:
|
||||
///
|
||||
/// ```toml,ignore
|
||||
/// ```ignore
|
||||
/// array = ["foo", "bar"]
|
||||
/// ```
|
||||
///
|
||||
/// You will have:
|
||||
///
|
||||
/// ```toml,ignore
|
||||
/// ```ignore
|
||||
/// array = [
|
||||
/// "foo",
|
||||
/// "bar",
|
||||
|
|
Loading…
Reference in a new issue