You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I found that some parts of the documentation for jepsen.generator has a wrong format.
For example, in the source code there is:
- The generator may return an operation, in which case:
- If its time is in the past, we can evaluate it now
- If its time is in the future, we wait until either:
- The time arrives
- Circumstances change (e.g. we update the generator)
But online it is:
The generator may return an operation, in which case:
If its time is in the past, we can evaluate it now
If its time is in the future, we wait until either:
The time arrives
Circumstances change (e.g. we update the generator)
Similarly, the example code is not in the correct order:
(op gen test context) => [op gen'] ; known op
[:pending gen] ; unsure
nil ; exhausted
(op gen test context) => [op gen’] ; known op [:pending gen] ; unsure nil ; exhausted
I want to know whether I can help to improve it?
The text was updated successfully, but these errors were encountered:
Hi, I found that some parts of the documentation for jepsen.generator has a wrong format.
For example, in the source code there is:
But online it is:
Similarly, the example code is not in the correct order:
I want to know whether I can help to improve it?
The text was updated successfully, but these errors were encountered: