We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b2bc42 + 668033f commit 9fb9cd7Copy full SHA for 9fb9cd7
CHANGELOG.md
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
10
### Fixed
11
12
+* Fixed `pool` example in docstring.
13
+
14
### Added
15
16
### Changed
src/pool/mod.rs
@@ -15,7 +15,11 @@
//! #![no_main]
//! #![no_std]
17
//!
18
-//! use heapless::{pool, pool::singleton::Box};
+//! use cortex_m_rt::{entry, exception};
19
+//! use heapless::{
20
+//! pool,
21
+//! pool::singleton::{Box, Pool},
22
+//! };
23
24
//! // instantiate a memory pool of `[u8; 128]` blocks as a global singleton
25
//! pool!(
0 commit comments