From 653a0858176ab6064ce9317bf83b7e7d0eba8481 Mon Sep 17 00:00:00 2001 From: John Wells Date: Fri, 9 Feb 2024 21:38:14 -0500 Subject: [PATCH] Update documentation --- README.md | 2 +- src/pool/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a86aa48..76aae4b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ _[QBasic](https://en.wikipedia.org/wiki/QBasic)_. ```toml [dependencies] -screen-13 = "0.9" +screen-13 = "0.10" ``` ## Overview diff --git a/src/pool/mod.rs b/src/pool/mod.rs index 77eec66..20fc5ee 100644 --- a/src/pool/mod.rs +++ b/src/pool/mod.rs @@ -82,7 +82,7 @@ //! //! * Non-zero cost: Atomic load and compatibility check per active alias //! * May cause GPU stalling if there is not enough work being submitted -//! * Aliased resources are typed `Arc>` and are not guaranteed to me mutable or unique +//! * Aliased resources are typed `Arc>` and are not guaranteed to be mutable or unique pub mod alias; pub mod fifo;