Skip to content

Commit 58d7ab3

Browse files
authored
Fix minor typos (#2551)
1 parent d8f759e commit 58d7ab3

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

packages/vm/src/calls.rs

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,27 @@ mod read_limits {
4646
pub const RESULT_REPLY: usize = 64 * MI;
4747
/// Max length (in bytes) of the result data from a query call.
4848
pub const RESULT_QUERY: usize = 64 * MI;
49-
/// Max length (in bytes) of the result data from a ibc_channel_open call.
49+
/// Max length (in bytes) of the result data from an ibc_channel_open call.
5050
#[cfg(feature = "stargate")]
5151
pub const RESULT_IBC_CHANNEL_OPEN: usize = 64 * MI;
52-
/// Max length (in bytes) of the result data from a ibc_channel_connect call.
52+
/// Max length (in bytes) of the result data from an ibc_channel_connect call.
5353
#[cfg(feature = "stargate")]
5454
pub const RESULT_IBC_CHANNEL_CONNECT: usize = 64 * MI;
55-
/// Max length (in bytes) of the result data from a ibc_channel_close call.
55+
/// Max length (in bytes) of the result data from an ibc_channel_close call.
5656
#[cfg(feature = "stargate")]
5757
pub const RESULT_IBC_CHANNEL_CLOSE: usize = 64 * MI;
58-
/// Max length (in bytes) of the result data from a ibc_packet_receive call.
58+
/// Max length (in bytes) of the result data from an ibc_packet_receive call.
5959
#[cfg(any(feature = "stargate", feature = "ibc2"))]
6060
pub const RESULT_IBC_PACKET_RECEIVE: usize = 64 * MI;
61-
/// Max length (in bytes) of the result data from a ibc_packet_ack call.
61+
/// Max length (in bytes) of the result data from an ibc_packet_ack call.
6262
#[cfg(any(feature = "stargate", feature = "ibc2"))]
6363
pub const RESULT_IBC_PACKET_ACK: usize = 64 * MI;
64-
/// Max length (in bytes) of the result data from a ibc_packet_timeout call.
64+
/// Max length (in bytes) of the result data from an ibc_packet_timeout call.
6565
#[cfg(any(feature = "stargate", feature = "ibc2"))]
6666
pub const RESULT_IBC_PACKET_TIMEOUT: usize = 64 * MI;
67-
/// Max length (in bytes) of the result data from a ibc_source_callback call.
67+
/// Max length (in bytes) of the result data from an ibc_source_callback call.
6868
pub const RESULT_IBC_SOURCE_CALLBACK: usize = 64 * MI;
69-
/// Max length (in bytes) of the result data from a ibc_destination_callback call.
69+
/// Max length (in bytes) of the result data from an ibc_destination_callback call.
7070
pub const RESULT_IBC_DESTINATION_CALLBACK: usize = 64 * MI;
7171
#[cfg(feature = "ibc2")]
7272
pub const RESULT_IBC2_PACKET_SEND: usize = 64 * MI;
@@ -91,29 +91,29 @@ mod deserialization_limits {
9191
pub const RESULT_REPLY: usize = 256 * KI;
9292
/// Max length (in bytes) of the result data from a query call.
9393
pub const RESULT_QUERY: usize = 256 * KI;
94-
/// Max length (in bytes) of the result data from a ibc_channel_open call.
94+
/// Max length (in bytes) of the result data from an ibc_channel_open call.
9595
#[cfg(feature = "stargate")]
9696
pub const RESULT_IBC_CHANNEL_OPEN: usize = 256 * KI;
97-
/// Max length (in bytes) of the result data from a ibc_channel_connect call.
97+
/// Max length (in bytes) of the result data from an ibc_channel_connect call.
9898
#[cfg(feature = "stargate")]
9999
pub const RESULT_IBC_CHANNEL_CONNECT: usize = 256 * KI;
100-
/// Max length (in bytes) of the result data from a ibc_channel_close call.
100+
/// Max length (in bytes) of the result data from an ibc_channel_close call.
101101
#[cfg(feature = "stargate")]
102102
pub const RESULT_IBC_CHANNEL_CLOSE: usize = 256 * KI;
103-
/// Max length (in bytes) of the result data from a ibc_packet_receive call.
103+
/// Max length (in bytes) of the result data from an ibc_packet_receive call.
104104
#[cfg(any(feature = "stargate", feature = "ibc2"))]
105105
pub const RESULT_IBC_PACKET_RECEIVE: usize = 256 * KI;
106-
/// Max length (in bytes) of the result data from a ibc_packet_ack call.
106+
/// Max length (in bytes) of the result data from an ibc_packet_ack call.
107107
#[cfg(feature = "stargate")]
108108
pub const RESULT_IBC_PACKET_ACK: usize = 256 * KI;
109-
/// Max length (in bytes) of the result data from a ibc_packet_timeout call.
109+
/// Max length (in bytes) of the result data from an ibc_packet_timeout call.
110110
#[cfg(any(feature = "stargate", feature = "ibc2"))]
111111
pub const RESULT_IBC_PACKET_TIMEOUT: usize = 256 * KI;
112-
/// Max length (in bytes) of the result data from a ibc_source_callback call.
112+
/// Max length (in bytes) of the result data from an ibc_source_callback call.
113113
pub const RESULT_IBC_SOURCE_CALLBACK: usize = 256 * KI;
114-
/// Max length (in bytes) of the result data from a ibc_destination_callback call.
114+
/// Max length (in bytes) of the result data from an ibc_destination_callback call.
115115
pub const RESULT_IBC_DESTINATION_CALLBACK: usize = 256 * KI;
116-
/// Max length (in bytes) of the result data from a ibc_packet_receive call.
116+
/// Max length (in bytes) of the result data from an ibc_packet_receive call.
117117
#[cfg(feature = "ibc2")]
118118
pub const RESULT_IBC2_PACKET_SEND: usize = 256 * KI;
119119
}

0 commit comments

Comments
 (0)