about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWim Looman <git@nemo157.com>2022-09-10 13:30:41 +0200
committerCaleb Cartwright <calebcartwright@users.noreply.github.com>2023-01-29 16:47:06 -0600
commit368a63305cea7a472fec37757bf962cdfc12be26 (patch)
treedbbb9fb85738d05c0135442afb9efae97077e82b
parent846662cdb36b5e0663d2be533f5e4178705c982b (diff)
downloadrust-368a63305cea7a472fec37757bf962cdfc12be26.tar.gz
rust-368a63305cea7a472fec37757bf962cdfc12be26.zip
Fix typo
-rw-r--r--src/comment.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comment.rs b/src/comment.rs
index 7167783872f..17b4af1717d 100644
--- a/src/comment.rs
+++ b/src/comment.rs
@@ -942,7 +942,7 @@ fn has_url(s: &str) -> bool {
         || REFERENCE_LINK_URL.is_match(s)
 }
 
-/// Returns true if the given string may be part of a Markdown talble.
+/// Returns true if the given string may be part of a Markdown table.
 fn is_table_item(mut s: &str) -> bool {
     // This function may return false positive, but should get its job done in most cases (i.e.
     // markdown tables with two column delimiters).