Skip to content

Commit a7f0ea4

Browse files
committed
2 parents 04ac0ab + daeda4b commit a7f0ea4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/core/Coins.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { JSONSerializable } from '../util/json';
33
import { Denom } from './Denom';
44

55
/**
6-
* Analagous to `sdk.Coins` and `sdk.DecCoins` from Cosmos-SDK, and represents a collection
6+
* Analogous to `sdk.Coins` and `sdk.DecCoins` from Cosmos-SDK, and represents a collection
77
* of [[Coin]] objects.
88
*
99
*/

src/core/ibc/core/connection/IbcVersion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Version as Version_pb } from '@initia/initia.proto/ibc/core/connection/
22
import { JSONSerializable } from '../../../../util/json';
33

44
/*
5-
* IbcVersion defines the versioning scheme used to negotiate the IBC verison in the connection handshake.
5+
* IbcVersion defines the versioning scheme used to negotiate the IBC version in the connection handshake.
66
*/
77
export class IbcVersion extends JSONSerializable<
88
IbcVersion.Amino,

src/core/opchild/msgs/MsgFinalizeTokenDeposit.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class MsgFinalizeTokenDeposit extends JSONSerializable<
1414
/**
1515
* @param sender the sender address
1616
* @param from l1 sender address
17-
* @param to l2 recepient address
17+
* @param to l2 recipient address
1818
* @param amount the coin amount to deposit
1919
* @param sequence the sequence number of l1 bridge
2020
* @param height the height of l1 which is including the deposit message

src/util/json.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe('removeNull', () => {
4040
expect(object).toEqual(object);
4141
});
4242

43-
it('returns object or primative if not Object', () => {
43+
it('returns object or primitive if not Object', () => {
4444
const string = 'string';
4545
const number = 1;
4646
const boolean = false;

0 commit comments

Comments
 (0)