File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ where
198
198
ws. send ( msg. into ( ) ) . await
199
199
}
200
200
201
- /// Await the initial [`ws::ServerMessage::TransactionUpdateLight`] `|` [`ws::ServerMessage::TransactionUpdate `].
201
+ /// Await the initial [`ws::ServerMessage::SubscriptionUpdate `].
202
202
/// If `module_def` is `Some`, print a JSON representation to stdout.
203
203
async fn await_initial_update < S > ( ws : & mut S , module_def : Option < & RawModuleDefV9 > ) -> anyhow:: Result < ( ) >
204
204
where
@@ -232,7 +232,7 @@ where
232
232
Ok ( ( ) )
233
233
}
234
234
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.
236
236
/// If `num` is `None`, keep going indefinitely.
237
237
async fn consume_transaction_updates < S > (
238
238
ws : & mut S ,
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ pub unsafe trait ReadColumn: Sized {
96
96
/// A few highlights are included here:
97
97
///
98
98
/// - 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,
100
100
/// which refer to an intrusive linked list of 62-byte "granules",
101
101
/// allocated separately in a space starting from the end of the page.
102
102
/// Strings are stored as UTF-8 bytes; all other var-len types are stored as BSATN-encoded bytes.
You can’t perform that action at this time.
0 commit comments