Merge pull request #312 from ChrisAntaki/typo

Fix typo
This commit is contained in:
Igor Katson 2025-01-20 23:57:21 +00:00 committed by GitHub
commit b26c3daac4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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),
};

View file

@ -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),
};