diff --git a/docs/adr/0009-async-rust.md b/docs/adr/0009-async-rust.md index 2c32d14a85..7297654073 100644 --- a/docs/adr/0009-async-rust.md +++ b/docs/adr/0009-async-rust.md @@ -6,7 +6,7 @@ ## Context and Problem Statement -Our Rust components are currently written as using synchronous Rust. +Our Rust components are currently written using synchronous Rust. The components are then wrapped in Kotlin to present an async interface. Swift also wraps them to present an async-style interface, although it currently uses `DispatchQueue` and completion handlers rather than `async` functions.