summaryrefslogtreecommitdiff
path: root/network-online
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-01-01 05:28:49 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-01-01 05:28:49 -0500
commitb798fa0ff634accf571aac28b2aff4bf5c0904d2 (patch)
tree863d65ddee3c74512c0d62ff40fac560ef84dd2f /network-online
parent66e08077bee03c33b13064b892171bf6e1c320e3 (diff)
fix a missing word in a comment
Diffstat (limited to 'network-online')
-rwxr-xr-xnetwork-online5
1 files changed, 3 insertions, 2 deletions
diff --git a/network-online b/network-online
index 484567b..e04eee9 100755
--- a/network-online
+++ b/network-online
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-# Copyright © 2015 Luke Shumaker <lukeshu@sbcglobal.net>
+# Copyright © 2015-2016 Luke Shumaker <lukeshu@sbcglobal.net>
# This work is free. You can redistribute it and/or modify it under the
# terms of the Do What The Fuck You Want To Public License, Version 2,
# as published by Sam Hocevar. See the COPYING file for more details.
@@ -11,7 +11,8 @@ fifo=/run/network-online/"$2"
PS4="$mode: "
# Use a named pipe (fifo) as an inter-process synchronization
-# mechanism; a call to block_{a,b} blocks its counterpart is run.
+# mechanism; a call to block_{a,b} blocks until its counterpart is
+# run.
block_a() {
cat "$fifo" >/dev/null
}