From 8b73709d4dccf730eb3291a3b080dea62e094898 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 9 Mar 2024 20:32:17 +0900 Subject: [PATCH] Tweak docs --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6564e7d5..fbc26beb 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ If you don't need them, disabling the default features may reduce code size and portable-atomic = { version = "1", default-features = false } ``` -If your crate supports no-std environment and requires atomic CAS, enabling the `require-cas` feature will allow the `portable-atomic` to display helpful error messages to users on targets requiring additional action on the user side to provide atomic CAS. +If your crate supports no-std environment and requires atomic CAS, enabling the `require-cas` feature will allow the `portable-atomic` to display a [helpful error message](https://github.com/taiki-e/portable-atomic/pull/100) to users on targets requiring additional action on the user side to provide atomic CAS. ```toml [dependencies] diff --git a/src/lib.rs b/src/lib.rs index 3a481bb5..0665ad22 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -35,7 +35,7 @@ If you don't need them, disabling the default features may reduce code size and portable-atomic = { version = "1", default-features = false } ``` -If your crate supports no-std environment and requires atomic CAS, enabling the `require-cas` feature will allow the `portable-atomic` to display helpful error messages to users on targets requiring additional action on the user side to provide atomic CAS. +If your crate supports no-std environment and requires atomic CAS, enabling the `require-cas` feature will allow the `portable-atomic` to display a [helpful error message](https://github.com/taiki-e/portable-atomic/pull/100) to users on targets requiring additional action on the user side to provide atomic CAS. ```toml [dependencies]