Skip to content

Commit

Permalink
Fix a couple of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Pastro authored Feb 4, 2019
1 parent 5804dd0 commit a3de7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/tutorial/02-db.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ version string.
The string after `(defn db ...` is a *docstring*, documenting the function's
behavior. When given a `version`, the `db` function uses `reify` to construct a
new object satisfying jepsen's `DB` protocol (from the `db` namespace). That
protocol specifies two functions all databases must support: `(setup db test
protocol specifies two functions all databases must support: `(setup! db test
node)`, and `(teardown! db test node)`. We provide stub implementations
here, which simply log an informational message.

Expand All @@ -64,7 +64,7 @@ construct using the `db` function we just wrote. We'll test etcd version
```

`noop-test`, like all Jepsen tests, is a map with keys like `:os`, `:name`,
`:db`, etc. See [jepsen.core](../../master/jepsen/src/jepsen/core.clj) for an
`:db`, etc. See [jepsen.core](../../jepsen/src/jepsen/core.clj) for an
overview of test structure, and `jepsen.core/run` for the full definition of a
test.

Expand Down

0 comments on commit a3de7df

Please sign in to comment.