aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorItay Grudev <itay-grudev@users.noreply.github.com>2016-05-11 18:53:27 +0100
committerItay Grudev <itay-grudev@users.noreply.github.com>2016-05-11 18:53:27 +0100
commit8caea926aa0f2779becd25c1004d1dcd946ea58c (patch)
treef225a36316cf43b4b2eaaa103b8fbfa3709f8907 /README.md
parentDocmented changes and example usage with a .pri file (diff)
downloadsingleapplication-8caea926aa0f2779becd25c1004d1dcd946ea58c.tar.xz
README: Better highlighing of exit code formula.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index afdd206..b352aa0 100644
--- a/README.md
+++ b/README.md
@@ -129,10 +129,10 @@ notify the main process that a new instance had been spawned and thus invoke the
To handle an issue on `*nix` systems, where the operating system owns the shared
memory block and if the program crashes the memory remains untouched, the
-library binds to the following signals and closes the program with error code =
-`128 + signum` where signum is the number representation of the signal listed
-below. Handling the signal is required in order to safely delete the
-`QSharedMemory` block. Each of these signals are potentially lethal and will
+library binds to the following signals and closes the program with
+`error code = 128 + signum` where signum is the number representation of the
+signal listed below. Handling the signal is required in order to safely delete
+the `QSharedMemory` block. Each of these signals are potentially lethal and will
results in process termination.
* `SIGHUP` - `1`, Hangup.