┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/terminal/terminalpanel.cpp
diff options
context:
space:
mode:
authorElvis Angelaccio <[email protected]>2018-02-11 22:59:29 +0100
committerElvis Angelaccio <[email protected]>2018-02-11 22:59:29 +0100
commit3dcfb753624c18f050dab62238af39eed4a68a12 (patch)
treebef81dd2fa8e08cf83a698356748d4d72fcd8b6b /src/panels/terminal/terminalpanel.cpp
parent87e8d0ba5f80f53a62a3951537b60a24e72e8460 (diff)
Fix typo
GIT_SILENT
Diffstat (limited to 'src/panels/terminal/terminalpanel.cpp')
-rw-r--r--src/panels/terminal/terminalpanel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/terminal/terminalpanel.cpp b/src/panels/terminal/terminalpanel.cpp
index 849d3f8c9..9ac0ca185 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);