Skip to content

Commit

Permalink
Fix typos detected by typos workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
weishan18 committed Oct 8, 2024
1 parent fc6bdcc commit 4d8b715
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions graphql/headless/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ type InventoryType {
# List of Materials.
materials: [MaterialType!]!

# List of Equipments.
equipments(
# List of Equipment.
equipment(
# filter equipped inventory item
equipped: Boolean

Expand Down
8 changes: 4 additions & 4 deletions graphql/mimir/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@ type InventoryObject {
costumes: [ItemObject!]

"""
The equipments in the inventory.
The equipment in the inventory.
"""
equipments: [ItemObject!]
equipment: [ItemObject!]

"""
The materials in the inventory.
Expand Down Expand Up @@ -427,9 +427,9 @@ type ItemSlotState {
costumes: [Guid]!

"""
The non-fungible item IDs of the equipments equipped in the item slot.
The non-fungible item IDs of the equipment equipped in the item slot.
"""
equipments: [Guid]!
equipment: [Guid]!
}

type ItemObject {
Expand Down
2 changes: 1 addition & 1 deletion pages/[network]/stake/[address].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const StakePage: NextPage<StakePageProps> = ({ stakeState, blockIndex }) => {
<div>
<p>Version: {stakeState.version}</p>
<p>Deposit: {stakeState.deposit}</p>
<p>StartedBlcokIndex: {stakeState.startedBlockIndex}</p>
<p>StartedBlockIndex: {stakeState.startedBlockIndex}</p>
<p>ReceivedBlockIndex: {stakeState.receivedBlockIndex}</p>
<div>
<h3>Contract</h3>
Expand Down

0 comments on commit 4d8b715

Please sign in to comment.