Skip to content

Commit d048ff9

Browse files
committed
Fix workding and links in lib.rs
1 parent b944b87 commit d048ff9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/lib.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
HAL (meaning **H**ardware **A**bstraction **L**ayer) is a generic term used in many contexts,
1010
but in the specific context of this crate, it is meant to abstract away the control exposed
1111
by the devices "[peripheral access crate](`crate::pac`)" to simplify initialization routines,
12-
with a robust interface avoiding miss-configurations while still not abstracting to much away.
12+
with a robust interface avoiding miss-configurations while still not abstracting away too much.
1313
14-
Also this crate's goal is to integrate well with the rest of the rust embedded ecosystem,
15-
for example by implementing the [`embedded_hal`] traits or using crates, like [`embedded_time`],
14+
Also, this crate's goal is to integrate well with the rest of the rust embedded ecosystem,
15+
for example by implementing the [`embedded_hal`] traits or using crates like [`embedded_time`],
1616
or [`rtcc`].
1717
1818
[stm]: https://www.st.com/en/microcontrollers-microprocessors/stm32f3-series.html
@@ -101,7 +101,7 @@
101101
102102
Enable functions, which leverage [`enumset`](https://crates.io/crates/enumset).
103103
This is especially usefull to get all set status events at once,
104-
see for example [`crate::serial::Serial::triggered_events()`]
104+
see for example [`serial::Serial::triggered_events()`]
105105
106106
### `defmt`
107107
@@ -118,6 +118,7 @@
118118
[Application Setup]: https://defmt.ferrous-systems.com/setup-app.html
119119
[defmt]: https://github.com/knurling-rs/defmt
120120
[filter]: https://defmt.ferrous-systems.com/filtering.html
121+
[`serial::Serial::triggered_events`]: `crate::serial::Serial::triggered_events`
121122
*/
122123
#![no_std]
123124
#![allow(clippy::upper_case_acronyms)]

0 commit comments

Comments
 (0)