summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-10-23 01:10:03 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-10-23 01:10:03 -0400
commit696b4b7784133217aa848c227473cca0153455d7 (patch)
tree80084a7453ae46215ae94adcd21d21fae701e15c
parent44cacd6b1cee00c3326d28bffdf18df0356b7204 (diff)
Fix typo in commentHEADmaster
-rwxr-xr-xparent-prune-empty-merge2
1 files changed, 1 insertions, 1 deletions
diff --git a/parent-prune-empty-merge b/parent-prune-empty-merge
index 10e9fb8..5521977 100755
--- a/parent-prune-empty-merge
+++ b/parent-prune-empty-merge
@@ -12,7 +12,7 @@ end
# Get the current list of parents
parents = $stdin.read.split.select{|a|a!='-p'}
-# Pnly keep parents that are not subsumed by other parents.
+# Only keep parents that are not subsumed by other parents.
parents = parents.select do |p|
not subsumed_by(p,parents)
end