diff --git a/Library/Homebrew/cmd/tap-pin.rb b/Library/Homebrew/cmd/tap-pin.rb
index 16c3a77dba5bee8ff363d77d8ee112708e763963..32249cac22b0f74eb0bca661771b1186a879e9cb 100644
--- a/Library/Homebrew/cmd/tap-pin.rb
+++ b/Library/Homebrew/cmd/tap-pin.rb
@@ -4,7 +4,7 @@ module Homebrew
   def tap_pin
     ARGV.named.each do |name|
       tap = Tap.fetch(name)
-      raise "#{tap} is not allowed" if tap.core_tap?
+      raise "pinning #{tap} is not allowed" if tap.core_tap?
       tap.pin
       ohai "Pinned #{tap}"
     end
diff --git a/Library/Homebrew/cmd/tap-unpin.rb b/Library/Homebrew/cmd/tap-unpin.rb
index 7a7a52fc822a1c39f0b8cb3d270dbb88d762766a..dd4b69aaada3813f32a65e861087e2c5d1340824 100644
--- a/Library/Homebrew/cmd/tap-unpin.rb
+++ b/Library/Homebrew/cmd/tap-unpin.rb
@@ -4,7 +4,7 @@ module Homebrew
   def tap_unpin
     ARGV.named.each do |name|
       tap = Tap.fetch(name)
-      raise "#{tap} is not allowed" if tap.core_tap?
+      raise "unpinning #{tap} is not allowed" if tap.core_tap?
       tap.unpin
       ohai "Unpinned #{tap}"
     end
diff --git a/Library/Homebrew/cmd/untap.rb b/Library/Homebrew/cmd/untap.rb
index 2f1b8056ee3f728f38eb22286c181627bb509196..8f5d7de6eda6b9beea51815d0b81c1917b4f77dd 100644
--- a/Library/Homebrew/cmd/untap.rb
+++ b/Library/Homebrew/cmd/untap.rb
@@ -6,7 +6,7 @@ module Homebrew
 
     ARGV.named.each do |tapname|
       tap = Tap.fetch(tapname)
-      raise "#{tap} is not allowed" if tap.core_tap?
+      raise "untapping #{tap} is not allowed" if tap.core_tap?
       tap.uninstall
     end
   end