Skip to content

Fix Typos in Comments #4777

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion typescript-sdk/src/query/offchain/ucs03-channels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const getQuoteToken = async (

let wrappingTokens = wrapping.value.v1_ibc_union_tokens

// if it is, quote token is the unwrapped verison of the wrapped token.
// if it is, quote token is the unwrapped version of the wrapped token.
// @ts-expect-error
if (wrappingTokens.length > 0) {
// @ts-expect-error
Expand Down
2 changes: 1 addition & 1 deletion typescript-sdk/src/utilities/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function raise(error: unknown): never {

/**
* generates salts to be used on transfer submission
* used to prevent transfer hash colissions
* used to prevent transfer hash collisions
*/
export function generateSalt(): Hex {
const rawSalt = new Uint8Array(32)
Expand Down
2 changes: 1 addition & 1 deletion unionvisor/src/bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ impl Bundle {
self.path.join("genesis.json")
}

/// Construct the path to the fallback verison, based on the [`BundleMeta`]
/// Construct the path to the fallback version, based on the [`BundleMeta`]
pub fn fallback_path(&self) -> Result<ValidVersionPath, ValidateVersionPathError> {
let fallback_version = &self.meta.fallback_version.clone();
self.path_to(fallback_version).validate()
Expand Down