From 4cd523076d52206ef8ae091fb9a71a7be781a5b2 Mon Sep 17 00:00:00 2001 From: bendk Date: Tue, 14 Nov 2023 09:15:26 -0500 Subject: [PATCH] Update docs/adr/0009-async-rust.md Co-authored-by: Lina Butler --- docs/adr/0009-async-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.