about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/librustdoc/html/length_limit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/length_limit.rs b/src/librustdoc/html/length_limit.rs
index 42b94b51118..91e098979ac 100644
--- a/src/librustdoc/html/length_limit.rs
+++ b/src/librustdoc/html/length_limit.rs
@@ -10,7 +10,7 @@ use crate::html::escape::Escape;
 /// This buffer ensures that:
 ///
 /// * all tags are closed,
-/// * only the most recently opened tag is closed,
+/// * tags are closed in the reverse order of when they were opened (i.e., the correct HTML order),
 /// * no tags are left empty (e.g., `<em></em>`) due to the length limit being reached,
 /// * all text is escaped.
 #[derive(Debug)]