Skip to content

Commit

Permalink
Fix rustdoc::bare_urls
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerkindt committed Jun 7, 2022
1 parent 2d69ca1 commit a4579cc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/internal_macros.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Allows const expansion until https://github.com/rust-lang/rust/issues/67441
/// Cannot be a function with generic type because of https://github.com/rust-lang/rust/issues/73255
/// Allows const expansion until `<https://github.com/rust-lang/rust/issues/67441>`
/// Cannot be a function with generic type because of `<https://github.com/rust-lang/rust/issues/73255>`
macro_rules! const_unwrap_or {
($op:path, $def:expr) => {{
// not yet stable clippy lint
Expand All @@ -11,8 +11,8 @@ macro_rules! const_unwrap_or {
}};
}

/// Allows const expansion until https://github.com/rust-lang/rust/issues/67441
/// Cannot be a function with generic type because of https://github.com/rust-lang/rust/issues/73255
/// Allows const expansion until `<https://github.com/rust-lang/rust/issues/67441>`
/// Cannot be a function with generic type because of `<https://github.com/rust-lang/rust/issues/73255>`
macro_rules! const_is_none {
($op:path) => {
match &$op {
Expand All @@ -22,8 +22,8 @@ macro_rules! const_is_none {
};
}

/// Allows const expansion until https://github.com/rust-lang/rust/issues/67441
/// Cannot be a function with generic type because of https://github.com/rust-lang/rust/issues/73255
/// Allows const expansion until `<https://github.com/rust-lang/rust/issues/67441>`
/// Cannot be a function with generic type because of `<https://github.com/rust-lang/rust/issues/73255>`
macro_rules! const_is_some {
($op:path) => {
match &$op {
Expand All @@ -33,8 +33,8 @@ macro_rules! const_is_some {
};
}

/// Allows const expansion until https://github.com/rust-lang/rust/issues/67441
/// Cannot be a function with generic type because of https://github.com/rust-lang/rust/issues/73255
/// Allows const expansion until `<https://github.com/rust-lang/rust/issues/67441>`
/// Cannot be a function with generic type because of `<https://github.com/rust-lang/rust/issues/73255>`
macro_rules! const_map_or {
($op:expr, $fn:expr, $def:expr) => {
match &$op {
Expand Down

0 comments on commit a4579cc

Please sign in to comment.