File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ int main()
179
179
180
180
Before using ``` primesieve::iterator::prev_prime() ``` you must change the start number
181
181
either in the constructor or using the ``` jump_to() ``` method (because the start number is
182
- initialized to 0 be default).
182
+ initialized to 0 by default).
183
183
184
184
* Please note that the first ``` prev_prime() ``` invocation returns the first prime ≤ start number.
185
185
If want to generate primes < start number you need to use e.g. ``` jump_to(start-1) ``` .
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ int main(void)
162
162
## ```primesieve_prev_prime()```
163
163
164
164
Before using ```primesieve_prev_prime()``` you must first change the start number using the
165
- ```primesieve_jump_to()``` function (because the start number is initialized to 0 be default).
165
+ ```primesieve_jump_to()``` function (because the start number is initialized to 0 by default).
166
166
167
167
* Please note that the first ```primesieve_prev_prime()``` call returns the first prime ≤ start
168
168
number. If want to generate primes < start number you need to use e.g. ```primesieve_jump_to(iter, start-1, stop)```.
You can’t perform that action at this time.
0 commit comments