diff --git a/crates/sui-types/src/multisig_legacy.rs b/crates/sui-types/src/multisig_legacy.rs index 73fd29717df7f..46afbe4f9df67 100644 --- a/crates/sui-types/src/multisig_legacy.rs +++ b/crates/sui-types/src/multisig_legacy.rs @@ -188,7 +188,7 @@ impl MultiSigLegacy { )?); if !inserted { return Err(SuiError::InvalidSignature { - error: "Duplicate sigature".to_string(), + error: "Duplicate signature".to_string(), }); } sigs.push(s.to_compressed()?); diff --git a/examples/move/nft-rental/c4-architecture/workspace.dsl b/examples/move/nft-rental/c4-architecture/workspace.dsl index efa61be7a1ee2..51b974a134a0f 100644 --- a/examples/move/nft-rental/c4-architecture/workspace.dsl +++ b/examples/move/nft-rental/c4-architecture/workspace.dsl @@ -13,7 +13,7 @@ workspace { promise = component "Promise" "A Promise object given to the borrower when they want to use the borrowed item. Acts as a hot potato, requiring that the rentable be returned after use." install = component "Install" "Allows for a borrower or renter to install the Rentables Extension to their Kiosk." list = component "List" "Allows for a renter to list an item for renting." - delist = component "Delist" "Allows a renter to delist an item they are currenlty listing but not actively renting." + delist = component "Delist" "Allows a renter to delist an item they are currently listing but not actively renting." rent = component "Rent" "Allows a borrower to rent an item that is being listed in one's Rentables Extension." borrow = component "Borrow" "Enables the borrower to borrow the item either by value of by reference. Depending on the configuration defined by the renter." reclaim = component "Reclaim" "Allows the renter to claim their item after the rental period has expired." @@ -63,4 +63,4 @@ workspace { } theme default } -} \ No newline at end of file +} diff --git a/examples/move/nft-rental/c4-architecture/workspace.json b/examples/move/nft-rental/c4-architecture/workspace.json index a2f998fc7e791..42c8a911affe0 100644 --- a/examples/move/nft-rental/c4-architecture/workspace.json +++ b/examples/move/nft-rental/c4-architecture/workspace.json @@ -202,7 +202,7 @@ } ], "tags" : "Element,Component" }, { - "description" : "Allows a renter to delist an item they are currenlty listing but not actively renting.", + "description" : "Allows a renter to delist an item they are currently listing but not actively renting.", "documentation" : { }, "id" : "14", "name" : "Delist", @@ -553,4 +553,4 @@ "softwareSystemId" : "3" } ] } -} \ No newline at end of file +} diff --git a/examples/trading/frontend/src/components/escrows/CreateEscrow.tsx b/examples/trading/frontend/src/components/escrows/CreateEscrow.tsx index d783f3673a85e..b768a5a021202 100644 --- a/examples/trading/frontend/src/components/escrows/CreateEscrow.tsx +++ b/examples/trading/frontend/src/components/escrows/CreateEscrow.tsx @@ -80,7 +80,7 @@ export function CreateEscrow({ locked }: { locked: ApiLockedObject }) {