From 9bf065eee488b0c32b7a0fee0396024f9103d547 Mon Sep 17 00:00:00 2001 From: James Munns Date: Wed, 7 Jan 2026 18:41:09 +0100 Subject: [PATCH] Fix links h/t @felipebalbi --- README.md | 2 +- bbq2/src/lib.rs | 2 +- legacy-core/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 18aeead..e186bd9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ the design of the lock-free algorithm used by bbqueue, see [this blog post]. For a 90 minute guided tour of BBQueue, you can also view this [guide on YouTube]. [guide on YouTube]: https://www.youtube.com/watch?v=ngTCf2cnGkY -[BipBuffers]: https://www.codeproject.com/Articles/3479/%2FArticles%2F3479%2FThe-Bip-Buffer-The-Circular-Buffer-with-a-Twist +[BipBuffers]: https://www.codeproject.com/articles/The-Bip-Buffer-The-Circular-Buffer-with-a-Twist [this blog post]: https://ferrous-systems.com/blog/lock-free-ring-buffer/ BBQueue is designed (primarily) to be a First-In, First-Out queue for use with DMA on embedded diff --git a/bbq2/src/lib.rs b/bbq2/src/lib.rs index 85f5bd1..785bc15 100644 --- a/bbq2/src/lib.rs +++ b/bbq2/src/lib.rs @@ -4,7 +4,7 @@ //! lockless, no_std, thread safe, queue, based on [BipBuffers]. For more info on //! the design of the lock-free algorithm used by bbqueue, see [this blog post]. //! -//! [BipBuffers]: https://www.codeproject.com/Articles/3479/%2FArticles%2F3479%2FThe-Bip-Buffer-The-Circular-Buffer-with-a-Twist +//! [BipBuffers]: https://www.codeproject.com/articles/The-Bip-Buffer-The-Circular-Buffer-with-a-Twist //! [this blog post]: https://ferrous-systems.com/blog/lock-free-ring-buffer/ //! //! BBQueue is designed (primarily) to be a First-In, First-Out queue for use with DMA on embedded diff --git a/legacy-core/src/lib.rs b/legacy-core/src/lib.rs index e735e3c..d0bea6e 100644 --- a/legacy-core/src/lib.rs +++ b/legacy-core/src/lib.rs @@ -7,7 +7,7 @@ //! For a 90 minute guided tour of BBQueue, you can also view this [guide on YouTube]. //! //! [guide on YouTube]: https://www.youtube.com/watch?v=ngTCf2cnGkY -//! [BipBuffers]: https://www.codeproject.com/Articles/3479/%2FArticles%2F3479%2FThe-Bip-Buffer-The-Circular-Buffer-with-a-Twist +//! [BipBuffers]: https://www.codeproject.com/articles/The-Bip-Buffer-The-Circular-Buffer-with-a-Twist //! [this blog post]: https://ferrous-systems.com/blog/lock-free-ring-buffer/ //! //! BBQueue is designed (primarily) to be a First-In, First-Out queue for use with DMA on embedded