File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ impl KdlDocument {
193193 & mut self . nodes
194194 }
195195
196- /// Gets the formatting details for this entry.
196+ /// Gets the formatting details (including whitespace and comments) for this entry.
197197 pub fn format ( & self ) -> Option < & KdlDocumentFormat > {
198198 self . format . as_ref ( )
199199 }
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ impl KdlEntry {
112112 self . ty = Some ( ty. into ( ) ) ;
113113 }
114114
115- /// Gets the formatting details for this entry.
115+ /// Gets the formatting details (including whitespace and comments) for this entry.
116116 pub fn format ( & self ) -> Option < & KdlEntryFormat > {
117117 self . format . as_ref ( )
118118 }
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ impl KdlNode {
246246 self . children_mut ( ) . as_mut ( ) . unwrap ( )
247247 }
248248
249- /// Gets the formatting details for this node.
249+ /// Gets the formatting details (including whitespace and comments) for this node.
250250 pub fn format ( & self ) -> Option < & KdlNodeFormat > {
251251 self . format . as_ref ( )
252252 }
You can’t perform that action at this time.
0 commit comments