diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 568ef9a3..a4ee815c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -186,7 +186,7 @@ jobs: with: name: dbg-musllinux-${{ matrix.platform.target }} path: hf_xet/dbg - - name: Upload wheels with seperated debug symbols + - name: Upload wheels with separated debug symbols uses: actions/upload-artifact@v4 with: name: wheels-musllinux-${{ matrix.platform.target }} diff --git a/deduplication/src/parallel chunking.lyx b/deduplication/src/parallel chunking.lyx index 393c8187..881cbafe 100644 --- a/deduplication/src/parallel chunking.lyx +++ b/deduplication/src/parallel chunking.lyx @@ -267,7 +267,7 @@ AddChunk(file[ChunkStart...]) \begin_layout Standard (Note that this simplified formulation does not cover more advanced procedures - like the the low variance chunking method in the Git Is for Data Paper, + like the low variance chunking method in the Git Is for Data Paper, nor the adaptive chunking method in FastCDC). \end_layout diff --git a/git_xet/src/git_url.rs b/git_xet/src/git_url.rs index 6c9cd20a..3c0c249b 100644 --- a/git_xet/src/git_url.rs +++ b/git_xet/src/git_url.rs @@ -6,7 +6,7 @@ use hub_client::{HFRepoType, RepoInfo}; use crate::errors::{GitXetError, Result}; -// This mod implements funtionalities to handle Git remote URLs, especially tailored for +// This mod implements functionalities to handle Git remote URLs, especially tailored for // Git LFS and Hugging Face repo needs, including deriving Git LFS server endpoint from // Git remote URL and handling HF specific repo types. diff --git a/git_xet/src/lfs_agent_protocol/protocol_spec.rs b/git_xet/src/lfs_agent_protocol/protocol_spec.rs index 9654a7e9..52edc89b 100644 --- a/git_xet/src/lfs_agent_protocol/protocol_spec.rs +++ b/git_xet/src/lfs_agent_protocol/protocol_spec.rs @@ -43,7 +43,7 @@ pub enum InitRequest { pub struct InitRequestInner { pub remote: String, // the Git remote, this can either be a remote name like "origin" or a remote URL pub concurrent: bool, // if git-lfs will split the transfer workload - pub concurrenttransfers: Option, /* the number of custom tranfer agent processes that git-lfs will spawn + pub concurrenttransfers: Option, /* the number of custom transfer agent processes that git-lfs will spawn * Note that this reflects the value of "lfs.concurrenttransfers" in Git config, * and is just an "FYI" to each agent process. git-lfs splits the transfer workload evenly * between the agent processes. diff --git a/mdb_shard/src/shard_file_reconstructor.rs b/mdb_shard/src/shard_file_reconstructor.rs index 3ab4b21e..62047b04 100644 --- a/mdb_shard/src/shard_file_reconstructor.rs +++ b/mdb_shard/src/shard_file_reconstructor.rs @@ -6,7 +6,7 @@ use crate::file_structs::MDBFileInfo; #[cfg_attr(target_family = "wasm", async_trait::async_trait(?Send))] pub trait FileReconstructor { /// Returns a pair of (file reconstruction information, maybe shard ID) - /// Err(_) if an error occured + /// Err(_) if an error occurred /// Ok(None) if the file is not found. async fn get_file_reconstruction_info( &self, diff --git a/utils/src/output_bytes.rs b/utils/src/output_bytes.rs index 8242574c..a1e7ab0d 100644 --- a/utils/src/output_bytes.rs +++ b/utils/src/output_bytes.rs @@ -1,4 +1,4 @@ -/// Convert a usize into an output string, chooosing the nearest byte prefix. +/// Convert a usize into an output string, choosing the nearest byte prefix. /// /// # Arguments /// * `v` - the size in bytes