grim/convey

Fix spelling mistake.
cleanup-on-signal
2017-10-14, Eric Fritz
fcbb5bf74b5d
Parents 4678efc2644b
Children 1966939175c1
Fix spelling mistake.
--- a/docker/run.go Fri Oct 13 17:58:23 2017 -0500
+++ b/docker/run.go Sat Oct 14 10:11:16 2017 -0500
@@ -182,7 +182,7 @@
// Be sure to clean up the script on app exit
cleanupFn := st.CleanupList.Add(func() { os.Remove(script.Name()) })
- // Call cleanup function on defer, which will may may instead be called
+ // Call cleanup function on defer, which may instead be called
// if the cleanup thread traps a signal.
defer cleanupFn()
--- a/plans/plans.go Fri Oct 13 17:58:23 2017 -0500
+++ b/plans/plans.go Sat Oct 14 10:11:16 2017 -0500
@@ -99,7 +99,7 @@
// Teardown plan on defer on app exit
cleanupFn := st.CleanupList.Add(func() { p.teardown(logger, st) })
- // Call cleanup function on defer, which will may may instead be called
+ // Call cleanup function on defer, which may instead be called
// if the cleanup thread traps a signal.
defer cleanupFn()