From 58692a35e87ddc8b8faca5bb262070d343ceb869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Sat, 28 Jan 2023 20:26:50 +0100 Subject: [PATCH] Fix some references to cortex-m-rtic --- rtic/macros/src/lib.rs | 4 ++-- rtic/src/lib.rs | 9 ++------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/rtic/macros/src/lib.rs b/rtic/macros/src/lib.rs index 92d7cddd99..3ac27017db 100644 --- a/rtic/macros/src/lib.rs +++ b/rtic/macros/src/lib.rs @@ -58,8 +58,8 @@ pub fn app(args: TokenStream, input: TokenStream) -> TokenStream { out_dir = Path::new(&out_str); // Default build path, annotated below: - // $(pwd)/target/thumbv7em-none-eabihf/debug/build/cortex-m-rtic-/out/ - // ///debug/build/cortex-m-rtic-/out/ + // $(pwd)/target/thumbv7em-none-eabihf/debug/build/rtic-/out/ + // ///debug/build/rtic-/out/ // // traverse up to first occurrence of TARGET, approximated with starts_with("thumbv") // and use the parent() of this path diff --git a/rtic/src/lib.rs b/rtic/src/lib.rs index e8b8140a79..860e7436ff 100644 --- a/rtic/src/lib.rs +++ b/rtic/src/lib.rs @@ -1,10 +1,5 @@ //! Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers. //! -//! **IMPORTANT**: This crate is published as [`cortex-m-rtic`] on crates.io but the name of the -//! library is `rtic`. -//! -//! [`cortex-m-rtic`]: https://crates.io/crates/cortex-m-rtic -//! //! The user level documentation can be found [here]. //! //! [here]: https://rtic.rs @@ -32,8 +27,8 @@ #![deny(rust_2018_idioms)] #![no_std] #![doc( - html_logo_url = "https://raw.githubusercontent.com/rtic-rs/cortex-m-rtic/master/book/en/src/RTIC.svg", - html_favicon_url = "https://raw.githubusercontent.com/rtic-rs/cortex-m-rtic/master/book/en/src/RTIC.svg" + html_logo_url = "https://raw.githubusercontent.com/rtic-rs/rtic/master/book/en/src/RTIC.svg", + html_favicon_url = "https://raw.githubusercontent.com/rtic-rs/rtic/master/book/en/src/RTIC.svg" )] //deny_warnings_placeholder_for_ci #![allow(clippy::inline_always)]