From 177d5fbb359ae65eedf6efaf42986890d34b1619 Mon Sep 17 00:00:00 2001 From: Marco Neumann Date: Tue, 17 Aug 2021 09:41:30 +0200 Subject: [PATCH] docs: fix typo in `Step::Drop` Co-authored-by: Andrew Lamb --- server/src/db/replay.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/db/replay.rs b/server/src/db/replay.rs index 7c2cbdc78f..3c33a8e569 100644 --- a/server/src/db/replay.rs +++ b/server/src/db/replay.rs @@ -507,7 +507,8 @@ mod tests { /// Drop partitions. /// - /// Note that this only works for fully persisted partitions. + /// Note that this only works for fully persisted partitions if + /// the database is configured for persistence. /// /// The partitions are by table name and partition key. Drop(Vec<(&'static str, &'static str)>),