Skip to content

Commit 66c5086

Browse files
committed
Use https for docs
1 parent d685089 commit 66c5086

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
@@ -6,7 +6,7 @@ authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
homepage = "https://github.com/rust-lang/glob"
88
repository = "https://github.com/rust-lang/glob"
9-
documentation = "http://doc.rust-lang.org/glob"
9+
documentation = "https://doc.rust-lang.org/glob"
1010
description = """
1111
Support for matching file paths against Unix shell style patterns.
1212
"""

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Support for matching file paths against Unix shell style patterns.
55

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

8-
[Documentation](http://doc.rust-lang.org/glob)
8+
[Documentation](https://doc.rust-lang.org/glob)
99

1010
## Usage
1111

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
//! is implemented entirely in Rust rather than deferring to the libc
2121
//! `glob`/`fnmatch` functions.
2222
23-
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
24-
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
25-
html_root_url = "http://doc.rust-lang.org/glob/")]
23+
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
24+
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
25+
html_root_url = "https://doc.rust-lang.org/glob/")]
2626
#![cfg_attr(all(test, windows), feature(std_misc))]
2727

2828
use std::ascii::AsciiExt;

0 commit comments

Comments
 (0)