File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 6
6
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7
7
// option. This file may not be copied, modified, or distributed
8
8
// except according to those terms.
9
+ //! Data that is known at compile-time and hard-coded into the binary.
9
10
use phf:: Map ;
10
11
11
12
/// The spec replaces most characters in the ISO-2022 C1 control code range
Original file line number Diff line number Diff line change @@ -60,8 +60,10 @@ pub trait Serializer {
60
60
}
61
61
62
62
/// A type alias for an attribute name and value (e.g. the `class="test"` in `<div class="test">`
63
- /// is represented as `(<QualName of type class>, test) .
63
+ /// is represented as `(<QualName of type class>, " test")` .
64
64
///
65
65
/// This is used in [`Serializer::start_elem`] where the value being serialized must supply an
66
66
/// iterator over the attributes for the current element
67
+ ///
68
+ /// [`Serializer::start_elem`]: trait.Serializer.html#tymethod.start_elem
67
69
pub type AttrRef < ' a > = ( & ' a QualName , & ' a str ) ;
You can’t perform that action at this time.
0 commit comments