From 46f43491c46081a1a39352fa7f1c94c21136d1a3 Mon Sep 17 00:00:00 2001 From: Evan Williams Date: Mon, 11 Dec 2023 14:36:18 -0500 Subject: [PATCH] fix documentation (again) --- bril-rs/src/program.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bril-rs/src/program.rs b/bril-rs/src/program.rs index 0b6cfa94f..42e556803 100644 --- a/bril-rs/src/program.rs +++ b/bril-rs/src/program.rs @@ -587,9 +587,11 @@ pub enum Type { #[cfg(feature = "memory")] #[serde(rename = "ptr")] Pointer(Box), + /// #[cfg(feature = "async")] #[serde(rename = "promise")] Promise(Box), + /// #[cfg(feature = "async")] #[serde(rename = "atomicint")] AtomicInt,