Skip to content

Commit a71b466

Browse files
authored
fix "Shutdown" -> "Shut down" (jupyter-server#1389)
1 parent f8534ca commit a71b466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/serverapp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2268,7 +2268,7 @@ def _confirm_exit(self) -> None:
22682268
info(self.running_server_info())
22692269
yes = _i18n("y")
22702270
no = _i18n("n")
2271-
sys.stdout.write(_i18n("Shutdown this Jupyter server (%s/[%s])? ") % (yes, no))
2271+
sys.stdout.write(_i18n("Shut down this Jupyter server (%s/[%s])? ") % (yes, no))
22722272
sys.stdout.flush()
22732273
r, w, x = select.select([sys.stdin], [], [], 5)
22742274
if r:

0 commit comments

Comments
 (0)