Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit 565a0d0

Browse files
committed
Use https for docs
1 parent 489d0cd commit 565a0d0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT/Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/rust-lang/tempdir"
99
homepage = "https://github.com/rust-lang/tempdir"
10-
documentation = "http://doc.rust-lang.org/tempdir"
10+
documentation = "https://doc.rust-lang.org/tempdir"
1111
description = """
1212
A library for managing a temporary directory and deleting all contents when it's
1313
dropped.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contents when the directory is dropped.
66

77
[![Build Status](https://travis-ci.org/rust-lang/tempdir.svg?branch=master)](https://travis-ci.org/rust-lang/tempdir)
88

9-
[Documentation](http://doc.rust-lang.org/tempdir)
9+
[Documentation](https://doc.rust-lang.org/tempdir)
1010

1111
## Usage
1212

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
12-
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
13-
html_root_url = "http://doc.rust-lang.org/tempdir/")]
11+
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
12+
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
13+
html_root_url = "https://doc.rust-lang.org/tempdir/")]
1414
#![cfg_attr(test, deny(warnings))]
1515

1616
extern crate rand;

0 commit comments

Comments
 (0)