Skip to content

Commit dfdaa8b

Browse files
authored
Fix links (#118)
h/t @felipebalbi
1 parent b4487e7 commit dfdaa8b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ the design of the lock-free algorithm used by bbqueue, see [this blog post].
99
For a 90 minute guided tour of BBQueue, you can also view this [guide on YouTube].
1010

1111
[guide on YouTube]: https://www.youtube.com/watch?v=ngTCf2cnGkY
12-
[BipBuffers]: https://www.codeproject.com/Articles/3479/%2FArticles%2F3479%2FThe-Bip-Buffer-The-Circular-Buffer-with-a-Twist
12+
[BipBuffers]: https://www.codeproject.com/articles/The-Bip-Buffer-The-Circular-Buffer-with-a-Twist
1313
[this blog post]: https://ferrous-systems.com/blog/lock-free-ring-buffer/
1414

1515
BBQueue is designed (primarily) to be a First-In, First-Out queue for use with DMA on embedded

bbq2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! lockless, no_std, thread safe, queue, based on [BipBuffers]. For more info on
55
//! the design of the lock-free algorithm used by bbqueue, see [this blog post].
66
//!
7-
//! [BipBuffers]: https://www.codeproject.com/Articles/3479/%2FArticles%2F3479%2FThe-Bip-Buffer-The-Circular-Buffer-with-a-Twist
7+
//! [BipBuffers]: https://www.codeproject.com/articles/The-Bip-Buffer-The-Circular-Buffer-with-a-Twist
88
//! [this blog post]: https://ferrous-systems.com/blog/lock-free-ring-buffer/
99
//!
1010
//! BBQueue is designed (primarily) to be a First-In, First-Out queue for use with DMA on embedded

legacy-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! For a 90 minute guided tour of BBQueue, you can also view this [guide on YouTube].
88
//!
99
//! [guide on YouTube]: https://www.youtube.com/watch?v=ngTCf2cnGkY
10-
//! [BipBuffers]: https://www.codeproject.com/Articles/3479/%2FArticles%2F3479%2FThe-Bip-Buffer-The-Circular-Buffer-with-a-Twist
10+
//! [BipBuffers]: https://www.codeproject.com/articles/The-Bip-Buffer-The-Circular-Buffer-with-a-Twist
1111
//! [this blog post]: https://ferrous-systems.com/blog/lock-free-ring-buffer/
1212
//!
1313
//! BBQueue is designed (primarily) to be a First-In, First-Out queue for use with DMA on embedded

0 commit comments

Comments
 (0)