diff options
| author | Wim Looman <git@nemo157.com> | 2022-09-10 13:30:41 +0200 |
|---|---|---|
| committer | Caleb Cartwright <calebcartwright@users.noreply.github.com> | 2023-01-29 16:47:06 -0600 |
| commit | 368a63305cea7a472fec37757bf962cdfc12be26 (patch) | |
| tree | dbbb9fb85738d05c0135442afb9efae97077e82b | |
| parent | 846662cdb36b5e0663d2be533f5e4178705c982b (diff) | |
| download | rust-368a63305cea7a472fec37757bf962cdfc12be26.tar.gz rust-368a63305cea7a472fec37757bf962cdfc12be26.zip | |
Fix typo
| -rw-r--r-- | src/comment.rs | 2 |
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). |
