Skip to content

Commit 197d09a

Browse files
authored
chore: fix typos (#2537)
1 parent 8652feb commit 197d09a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/std/src/exports/exports.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ where
346346

347347
/// do_ibc_channel_connect is designed for use with #[entry_point] to make a "C" extern
348348
///
349-
/// contract_fn is a callback when a IBC channel is established (after both sides agree in open)
349+
/// contract_fn is a callback when an IBC channel is established (after both sides agree in open)
350350
///
351351
/// - `Q`: custom query type (see QueryRequest)
352352
/// - `C`: custom response message type (see CosmosMsg)
@@ -374,7 +374,7 @@ where
374374

375375
/// do_ibc_channel_close is designed for use with #[entry_point] to make a "C" extern
376376
///
377-
/// contract_fn is a callback when a IBC channel belonging to this contract is closed
377+
/// contract_fn is a callback when an IBC channel belonging to this contract is closed
378378
///
379379
/// - `Q`: custom query type (see QueryRequest)
380380
/// - `C`: custom response message type (see CosmosMsg)

packages/std/src/exports/imports.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ extern "C" {
101101
/// greater than 1 in case of error.
102102
fn ed25519_batch_verify(messages_ptr: u32, signatures_ptr: u32, public_keys_ptr: u32) -> u32;
103103

104-
/// Writes a debug message (UFT-8 encoded) to the host for debugging purposes.
104+
/// Writes a debug message (UTF-8 encoded) to the host for debugging purposes.
105105
/// The host is free to log or process this in any way it considers appropriate.
106106
/// In production environments it is expected that those messages are discarded.
107107
fn debug(source_ptr: u32);

0 commit comments

Comments
 (0)