aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_2020/table/construct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout_2020/table/construct.rs')
-rw-r--r--components/layout_2020/table/construct.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout_2020/table/construct.rs b/components/layout_2020/table/construct.rs
index 8b42a709962..3dd0c01e977 100644
--- a/components/layout_2020/table/construct.rs
+++ b/components/layout_2020/table/construct.rs
@@ -303,7 +303,7 @@ impl TableBuilder {
}
}
- /// https://html.spec.whatwg.org/multipage/#algorithm-for-processing-rows
+ /// <https://html.spec.whatwg.org/multipage/#algorithm-for-processing-rows>
/// Push a single cell onto the slot map, handling any colspans it may have, and
/// setting up the outgoing rowspans.
pub fn add_cell(&mut self, cell: TableSlotCell) {
@@ -468,7 +468,7 @@ where
.push(AnonymousTableContent::Text(info.clone(), text));
}
- /// https://html.spec.whatwg.org/multipage/#forming-a-table
+ /// <https://html.spec.whatwg.org/multipage/#forming-a-table>
fn handle_element(
&mut self,
info: &NodeAndStyleInfo<Node>,
@@ -646,7 +646,7 @@ where
.push(AnonymousTableContent::Text(info.clone(), text));
}
- /// https://html.spec.whatwg.org/multipage/#algorithm-for-processing-rows
+ /// <https://html.spec.whatwg.org/multipage/#algorithm-for-processing-rows>
fn handle_element(
&mut self,
info: &NodeAndStyleInfo<Node>,