Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/std/src/results/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl Event {
}
}

/// An key value pair that is used in the context of event attributes in logs
/// A key value pair that is used in the context of event attributes in logs
#[derive(
Serialize, Deserialize, Clone, Default, Debug, PartialEq, Eq, JsonSchema, cw_schema::Schemaifier,
)]
Expand Down
4 changes: 2 additions & 2 deletions packages/std/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ pub trait Api: Any {
///
/// e(p_1, q_1) × e(p_2, q_2) × … × e(p_n, q_n) = e(s, q)
///
/// The argument `ps` contain the points p_1, ..., p_n ∈ G1 as a concatenation of 48 byte elements.
/// The argument `qs` contain the points q_1, ..., q_n ∈ G2 as a concatenation of 96 byte elements.
/// The argument `ps` contains the points p_1, ..., p_n ∈ G1 as a concatenation of 48 byte elements.
/// The argument `qs` contains the points q_1, ..., q_n ∈ G2 as a concatenation of 96 byte elements.
///
/// ## Examples
///
Expand Down
2 changes: 1 addition & 1 deletion packages/vm/src/modules/pinned_memory_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub struct InstrumentedModule {
pub module: CachedModule,
}

/// An pinned in memory module cache
/// A pinned in memory module cache
pub struct PinnedMemoryCache {
modules: HashMap<Checksum, InstrumentedModule>,
}
Expand Down