Skip to content

Commit ef6b60f

Browse files
mamcxgefjon
andauthored
Apply suggestions from code review
Co-authored-by: Phoebe Goldman <phoebe@clockworklabs.io> Signed-off-by: Mario Montoya <mamcx@elmalabarista.com>
1 parent b212baf commit ef6b60f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/cli/src/subcommands/subscribe.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ where
198198
ws.send(msg.into()).await
199199
}
200200

201-
/// Await the initial [`ws::ServerMessage::TransactionUpdateLight`] `|` [`ws::ServerMessage::TransactionUpdate`].
201+
/// Await the initial [`ws::ServerMessage::SubscriptionUpdate`].
202202
/// If `module_def` is `Some`, print a JSON representation to stdout.
203203
async fn await_initial_update<S>(ws: &mut S, module_def: Option<&RawModuleDefV9>) -> anyhow::Result<()>
204204
where
@@ -232,7 +232,7 @@ where
232232
Ok(())
233233
}
234234

235-
/// Print `num` [`ws::ServerMessage::TransactionUpdateLight`] `|` [`ws::ServerMessage::TransactionUpdate`] messages as JSON.
235+
/// Print `num` [`ws::ServerMessage::TransactionUpdateLight`] or [`ws::ServerMessage::TransactionUpdate`] messages as JSON.
236236
/// If `num` is `None`, keep going indefinitely.
237237
async fn consume_transaction_updates<S>(
238238
ws: &mut S,

crates/table/src/read_column.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ pub unsafe trait ReadColumn: Sized {
9696
/// A few highlights are included here:
9797
///
9898
/// - Variable-length columns, i.e. `AlgebraicType::String`, `AlgebraicType::Array` and `AlgebraicType::Map`
99-
/// are stored within the row as [`crate::var_len::VarLenRef`]'s,
99+
/// are stored within the row as [`crate::var_len::VarLenRef`]s,
100100
/// which refer to an intrusive linked list of 62-byte "granules",
101101
/// allocated separately in a space starting from the end of the page.
102102
/// Strings are stored as UTF-8 bytes; all other var-len types are stored as BSATN-encoded bytes.

0 commit comments

Comments
 (0)