Skip to content

Commit

Permalink
Disable "broken intra doc links" lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cakebaker committed Aug 12, 2022
1 parent 6890005 commit fcb7185
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/uucore/src/lib/macros.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// TODO fix broken links
#![allow(rustdoc::broken_intra_doc_links)]
//! Macros for the uucore utilities.
//!
//! This module bundles all macros used across the uucore utilities. These
Expand Down Expand Up @@ -28,7 +30,7 @@
//! - Terminate util execution
//! - Crash program: [`crash!`], [`crash_if_err!`]
// spell-checker:ignore sourcepath targetpath
// spell-checker:ignore sourcepath targetpath rustdoc

use std::sync::atomic::AtomicBool;

Expand Down
4 changes: 3 additions & 1 deletion src/uucore/src/lib/mods/error.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// TODO fix broken links
#![allow(rustdoc::broken_intra_doc_links)]
//! All utils return exit with an exit code. Usually, the following scheme is used:
//! * `0`: succeeded
//! * `1`: minor problems
Expand Down Expand Up @@ -48,7 +50,7 @@
//! * Using [`ExitCode`] is not recommended but can be useful for converting utils to use
//! [`UResult`].
// spell-checker:ignore uioerror
// spell-checker:ignore uioerror rustdoc

use clap;
use std::{
Expand Down

0 comments on commit fcb7185

Please sign in to comment.