From 3dcfb753624c18f050dab62238af39eed4a68a12 Mon Sep 17 00:00:00 2001 From: Elvis Angelaccio Date: Sun, 11 Feb 2018 22:59:29 +0100 Subject: [PATCH] Fix typo GIT_SILENT --- src/panels/terminal/terminalpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/terminal/terminalpanel.cpp b/src/panels/terminal/terminalpanel.cpp index 849d3f8c90..9ac0ca1859 100644 --- a/src/panels/terminal/terminalpanel.cpp +++ b/src/panels/terminal/terminalpanel.cpp @@ -175,7 +175,7 @@ void TerminalPanel::sendCdToTerminal(const QString& dir, HistoryPolicy addToHist // The TerminalV2 interface does not provide a way to delete the // current line before sending a new input. This is mandatory, // otherwise sending a 'cd x' to a existing 'rm -rf *' might - // result in data loss. As workaround SIGINT is send. + // result in data loss. As workaround SIGINT is sent. const int processId = m_terminal->terminalProcessId(); if (processId > 0) { kill(processId, SIGINT);