From cf243bc86b8eb93cb80580d5f4e1dd4aa45ad5bb Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 21 Jun 2018 18:16:25 +1000 Subject: [PATCH] misc: cleanup --- README.md | 8 ++++---- manuscript/chapter12.txt | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f5241ca..a34c5ef 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ See something that is incorrectly described, buggy or outright wrong? Open an is * [TRAPS](#traps) * [Do something on script exit](#do-something-on-script-exit) * [Ignore terminal interrupt (CTRL+C, SIGINT)](#ignore-terminal-interrupt-ctrlc-sigint) - * [React to window resize.](#react-to-window-resize) - * [Do something before every command.](#do-something-before-every-command) + * [React to window resize](#react-to-window-resize) + * [Do something before every command](#do-something-before-every-command) * [Do something when a shell function or a sourced file finishes executing](#do-something-when-a-shell-function-or-a-sourced-file-finishes-executing) * [PERFORMANCE](#performance) * [Disable Unicode](#disable-unicode) @@ -1311,14 +1311,14 @@ trap 'printf \\e[2J\\e[H\\e[m' EXIT trap '' INT ``` -## React to window resize. +## React to window resize ```shell # Call a function on window resize. trap 'code_here' SIGWINCH ``` -## Do something before every command. +## Do something before every command ```shell trap 'code_here' DEBUG diff --git a/manuscript/chapter12.txt b/manuscript/chapter12.txt index 3d91ecb..14c380b 100644 --- a/manuscript/chapter12.txt +++ b/manuscript/chapter12.txt @@ -20,14 +20,14 @@ trap 'printf \\e[2J\\e[H\\e[m' EXIT trap '' INT ``` -## React to window resize. +## React to window resize ```shell # Call a function on window resize. trap 'code_here' SIGWINCH ``` -## Do something before every command. +## Do something before every command ```shell trap 'code_here' DEBUG