summaryrefslogtreecommitdiff
path: root/cli/tools/repl/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r--cli/tools/repl/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs
index f0964ec4d..7ca229ab3 100644
--- a/cli/tools/repl/mod.rs
+++ b/cli/tools/repl/mod.rs
@@ -133,7 +133,7 @@ pub async fn run(
// We check for close and break here instead of making it a loop condition to get
// consistent behavior in when the user evaluates a call to close().
- if repl_session.is_closing().await? {
+ if repl_session.closing().await? {
break;
}