From 68b3e4966c0c0d66f138b8eabc37a2c117f95b6f Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 8 Feb 2024 15:10:17 -0700 Subject: [PATCH] Disable broken rustdoc links --- graphics/src/text/editor.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/src/text/editor.rs b/graphics/src/text/editor.rs index e1be3ff6b4..eba7f1e8f6 100644 --- a/graphics/src/text/editor.rs +++ b/graphics/src/text/editor.rs @@ -38,7 +38,7 @@ impl Editor { self.internal().editor.with_buffer(f) } - /// Returns the buffer of the [`Paragraph`]. + /// Returns the buffer of the `Paragraph`. pub fn buffer(&self) -> &cosmic_text::Buffer { match self.internal().editor.buffer_ref() { cosmic_text::BufferRef::Owned(buffer) => buffer, diff --git a/src/lib.rs b/src/lib.rs index 1b5bfe7b43..aa46198435 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -143,7 +143,7 @@ //! 1. Draw the resulting user interface. //! //! # Usage -//! The [`Application`] trait should get you started quickly, +//! The `Application` trait should get you started quickly, //! streamlining all the process described above! //! //! [Elm]: https://elm-lang.org/