felipenoris / bdays

Business Days calendars for Rustaceans.
https://docs.rs/bdays
MIT License
17 stars 6 forks source link

Fix links in doc #3

Closed dengelt closed 5 months ago

dengelt commented 9 months ago

When building the docs, cargo throws some warnings:

warning: this URL is not a hyperlink
  --> src/lib.rs:15:74
   |
15 | //! * `bdays::calendars::brazil::BrazilExchange` : B3 Exchange holidays (http://www.b3.com.br)
   |                                                                          ^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<http://www.b3.com.br>`
   |
   = note: bare URLs are not automatically turned into clickable links
   = note: `#[warn(rustdoc::bare_urls)]` on by default

warning: this URL is not a hyperlink
  --> src/calendars/brazil.rs:80:27
   |
80 | /// B3 Exchange holidays (http://www.b3.com.br).
   |                           ^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<http://www.b3.com.br>`
   |
   = note: bare URLs are not automatically turned into clickable links

I implemented cargo's suggestions and changed the protocol from http to https.

felipenoris commented 5 months ago

Thanks!