Skip to content
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

docs: fix simple typo, mutliple -> multiple #790

Open
wants to merge 1 commit into
base: bfgminer
Choose a base branch
from
Open
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
docs: fix simple typo, mutliple -> multiple
There is a small typo in miner.c.

Should read `multiple` rather than `mutliple`.
  • Loading branch information
timgates42 committed Nov 28, 2020
commit 4b1c2b2f1accc4d1d15321ddeb4835e4291dd443
2 changes: 1 addition & 1 deletion miner.c
Original file line number Diff line number Diff line change
@@ -10131,7 +10131,7 @@ static struct work *hash_pop(struct cgpu_info * const proc)
/* Signal the getwork scheduler to look for more work */
pthread_cond_signal(&gws_cond);

/* Signal hash_pop again in case there are mutliple hash_pop waiters */
/* Signal hash_pop again in case there are multiple hash_pop waiters */
pthread_cond_signal(&getq->cond);
mutex_unlock(stgd_lock);
work->pool->last_work_time = time(NULL);