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:
|
/// 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",
|
||||||
|
|
Loading…
Reference in a new issue