From 0652f65039ad81921c7b98dd21253e9fcae3fa39 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Mon, 7 May 2018 10:52:35 +0100
Subject: [PATCH] Issue #2969718 by runeasgar, alexpott: The quick-start script
 could make it clearer than Ctrl+C is used to kill the server

---
 core/lib/Drupal/Core/Command/ServerCommand.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/lib/Drupal/Core/Command/ServerCommand.php b/core/lib/Drupal/Core/Command/ServerCommand.php
index 580793eb7738..182167a4c45e 100644
--- a/core/lib/Drupal/Core/Command/ServerCommand.php
+++ b/core/lib/Drupal/Core/Command/ServerCommand.php
@@ -219,7 +219,7 @@ protected function start($host, $port, DrupalKernelInterface $kernel, InputInter
     $io->writeln('<info>This server is not meant for production use.</info>');
     $one_time_login = "http://$host:$port{$this->getOneTimeLoginUrl()}/login";
     $io->writeln("<info>One time login url:</info> <$one_time_login>");
-    $io->writeln('Press Ctrl-C to quit.');
+    $io->writeln('Press Ctrl-C to quit the Drupal development server.');
 
     if (!$input->getOption('suppress-login')) {
       if ($this->openBrowser("$one_time_login?destination=" . urlencode("/"), $io) === 1) {
-- 
GitLab