Skip to content

Commit e14819a

Browse files
committed
1 parent 33fe113 commit e14819a

6 files changed

+3
-3
lines changed

src/librustdoc/html/render.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ themePicker.onblur = handleThemeButtonsBlur;
930930
static_files::source_serif_pro::BOLD)?;
931931
write(cx.dst.join("SourceSerifPro-It.ttf.woff"),
932932
static_files::source_serif_pro::ITALIC)?;
933-
write(cx.dst.join("SourceSerifPro-LICENSE.txt"),
933+
write(cx.dst.join("SourceSerifPro-LICENSE.md"),
934934
static_files::source_serif_pro::LICENSE)?;
935935
write(cx.dst.join("SourceCodePro-Regular.woff"),
936936
static_files::source_code_pro::REGULAR)?;
Binary file not shown.
Binary file not shown.

src/librustdoc/html/static/SourceSerifPro-LICENSE.txt renamed to src/librustdoc/html/static/SourceSerifPro-LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
1+
Copyright 2014-2018 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries.
22

33
This Font Software is licensed under the SIL Open Font License, Version 1.1.
44

Binary file not shown.

src/librustdoc/html/static_files.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub mod source_serif_pro {
9191
pub static ITALIC: &'static [u8] = include_bytes!("static/SourceSerifPro-It.ttf.woff");
9292

9393
/// The file `SourceSerifPro-LICENSE.txt`, the license text for the Source Serif Pro font.
94-
pub static LICENSE: &'static [u8] = include_bytes!("static/SourceSerifPro-LICENSE.txt");
94+
pub static LICENSE: &'static [u8] = include_bytes!("static/SourceSerifPro-LICENSE.md");
9595
}
9696

9797
/// Files related to the Source Code Pro font.

0 commit comments

Comments
 (0)