Skip to content

Commit e5c7abd

Browse files
committed
Auto merge of #1781 - smarnach:clippy-beta-static, r=jtgeibel
Fix clippy error on beta. Clippy on the beta channel complained about this, so builds for new PRs won't pass unless we fix this.
2 parents b0b4276 + 476194a commit e5c7abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/render.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ fn markdown_to_html(text: &str, base_url: Option<&str>) -> String {
192192

193193
/// Any readme with a filename ending in one of these extensions will be rendered as Markdown.
194194
/// Note we also render a readme as Markdown if _no_ extension is on the filename.
195-
static MARKDOWN_EXTENSIONS: [&'static str; 7] = [
195+
static MARKDOWN_EXTENSIONS: [&str; 7] = [
196196
".md",
197197
".markdown",
198198
".mdown",

0 commit comments

Comments
 (0)