From ea67584c85d125ee9330098cda0b3d5b2c9d35ea Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Mon, 10 Oct 2022 19:33:36 -0700 Subject: [PATCH] embedded-hal-async: fix missing link in README --- embedded-hal-async/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-hal-async/README.md b/embedded-hal-async/README.md index 5ccce7ba0..819c13488 100644 --- a/embedded-hal-async/README.md +++ b/embedded-hal-async/README.md @@ -9,7 +9,7 @@ An asynchronous Hardware Abstraction Layer (HAL) for embedded systems. -This crate contains asynchronous versions of the [`embedded-hal`](https://crates.io/crates/embedded-hal) traits and shares its scope and [design goals]. +This crate contains asynchronous versions of the [`embedded-hal`](https://crates.io/crates/embedded-hal) traits and shares its scope and [design goals](https://docs.rs/embedded-hal/latest/embedded_hal/#design-goals). The purpose of this crate is to iterate over these trait versions before integrating them into [`embedded-hal`](https://crates.io/crates/embedded-hal). **NOTE** These traits are still experimental. At least one breaking change to this crate is expected in the future (changing from GATs to `async fn`), but there might be more.