Merge pull request #1736 from db48x/fix-doc-warnings

cargo doc complains about some urls that are not turned into links
This commit is contained in:
José Luis Cruz 2021-06-08 16:01:36 +02:00 committed by GitHub
commit 617071cf2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ fn get_error<T>() -> Result<T, Error> {
/// [`libc::FILE`](https://docs.rs/libc/0.2.80/libc/enum.FILE.html)
///
/// The notcurses `FILE` type [`FILE_NC`] a struct imported through bindgen,
/// while the equivalent [`libc`][https://docs.rs/libc] crate FILE
/// while the equivalent [`libc`](https://docs.rs/libc) crate FILE
/// ([`FILE_LIBC`]) is an opaque enum.
///
/// Several methods are provided to cast back and forth between both types,

View File

@ -122,8 +122,8 @@ impl NcInput {
/// Is this [char] a Supplementary Private Use Area-B codepoint?
///
/// Links:
/// - https://en.wikipedia.org/wiki/Private_Use_Areas
/// - https://codepoints.net/supplementary_private_use_area-b
/// - <https://en.wikipedia.org/wiki/Private_Use_Areas>
/// - <https://codepoints.net/supplementary_private_use_area-b>
#[inline]
pub const fn nckey_supppuab_p(w: char) -> bool {
w as u32 >= 0x100000_u32 && w as u32 <= 0x10fffd_u32