Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joon9823 committed Jun 3, 2024
2 parents 04ac0ab + daeda4b commit a7f0ea4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/core/Coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { JSONSerializable } from '../util/json';
import { Denom } from './Denom';

/**
* Analagous to `sdk.Coins` and `sdk.DecCoins` from Cosmos-SDK, and represents a collection
* Analogous to `sdk.Coins` and `sdk.DecCoins` from Cosmos-SDK, and represents a collection
* of [[Coin]] objects.
*
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/ibc/core/connection/IbcVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Version as Version_pb } from '@initia/initia.proto/ibc/core/connection/
import { JSONSerializable } from '../../../../util/json';

/*
* IbcVersion defines the versioning scheme used to negotiate the IBC verison in the connection handshake.
* IbcVersion defines the versioning scheme used to negotiate the IBC version in the connection handshake.
*/
export class IbcVersion extends JSONSerializable<
IbcVersion.Amino,
Expand Down
2 changes: 1 addition & 1 deletion src/core/opchild/msgs/MsgFinalizeTokenDeposit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class MsgFinalizeTokenDeposit extends JSONSerializable<
/**
* @param sender the sender address
* @param from l1 sender address
* @param to l2 recepient address
* @param to l2 recipient address
* @param amount the coin amount to deposit
* @param sequence the sequence number of l1 bridge
* @param height the height of l1 which is including the deposit message
Expand Down
2 changes: 1 addition & 1 deletion src/util/json.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('removeNull', () => {
expect(object).toEqual(object);
});

it('returns object or primative if not Object', () => {
it('returns object or primitive if not Object', () => {
const string = 'string';
const number = 1;
const boolean = false;
Expand Down

0 comments on commit a7f0ea4

Please sign in to comment.