Skip to content

Commit

Permalink
Merge pull request #312 from ChrisAntaki/typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
ikatson authored Jan 20, 2025
2 parents b34c246 + 5a0800c commit b26c3da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/rqbit/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ async fn async_main(opts: Opts, cancel: CancellationToken) -> anyhow::Result<()>
})?;

match librqbit::try_increase_nofile_limit() {
Ok(limit) => info!(limit = limit, "inreased open file limit"),
Ok(limit) => info!(limit = limit, "increased open file limit"),
Err(e) => warn!("failed increasing open file limit: {:#}", e),
};

Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ async fn start() {
.unwrap();

match librqbit::try_increase_nofile_limit() {
Ok(limit) => info!(limit = limit, "inreased open file limit"),
Ok(limit) => info!(limit = limit, "increased open file limit"),
Err(e) => warn!("failed increasing open file limit: {:#}", e),
};

Expand Down

0 comments on commit b26c3da

Please sign in to comment.