Skip to content

Commit 99578e6

Browse files
authored
Update fizz-buzz-multithreaded.cpp
1 parent 23fcf68 commit 99578e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/fizz-buzz-multithreaded.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class FizzBuzz {
3737
}
3838

3939
// printFizzBuzz() outputs "fizzbuzz".
40-
void fizzbuzz(function<void()> printFizzBuzz) {
40+
void fizzbuzz(function<void()> printFizzBuzz) {
4141
for (int i = 1; i <= n_; ++i) {
4242
{
4343
unique_lock<mutex> l(m_);

0 commit comments

Comments
 (0)