Skip to content

Commit

Permalink
fix: typo in set_io_concurrentcy_limit (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Oct 31, 2024
1 parent 9e9eaa2 commit 91bf2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rattler/src/install/installer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl Installer {
///
/// This function is similar to [`Self::with_io_concurrency_limit`],
/// but modifies an existing instance.
pub fn set_io_concurrentcy_limit(&mut self, limit: usize) -> &mut Self {
pub fn set_io_concurrency_limit(&mut self, limit: usize) -> &mut Self {
self.io_semaphore = Some(Arc::new(Semaphore::new(limit)));
self
}
Expand Down

0 comments on commit 91bf2df

Please sign in to comment.