diff --git a/src/comment.rs b/src/comment.rs index 0e06545300a4..8fad0e01b7a9 100644 --- a/src/comment.rs +++ b/src/comment.rs @@ -396,7 +396,7 @@ fn rewrite_comment_inner( /// Returns true if the given string MAY include URLs or alike. fn has_url(s: &str) -> bool { // This function may return false positive, but should get its job done in most cases. - s.contains("https://") || s.contains("http://") + s.contains("https://") || s.contains("http://") || s.contains("ftp://") || s.contains("file://") } /// Given the span, rewrite the missing comment inside it if available.