aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRoss Penman2016-08-31 20:17:56 +0100
committerRoss Penman2016-08-31 20:19:14 +0100
commit5f1abcf84210d20fe8276d0216a7c8e39f326398 (patch)
treeeb57c3a051144ed9b26e6375a6a354c2e5c6d788 /Library
parent2c35d2c939b3cf9dc3824042a824a9deb211f137 (diff)
downloadbrew-5f1abcf84210d20fe8276d0216a7c8e39f326398.tar.bz2
docs: fix a typo in plist_options
While using `"true"` instead of `true` wouldn't break anything, it doesn't seem to be expected, and using `"false"` instead of `false` _would_ break things.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index a57d51a01..3565b8163 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -2062,7 +2062,7 @@ class Formula
# <pre>plist_options :manual => "foo"</pre>
#
# Or perhaps you'd like to give the user a choice? Ooh fancy.
- # <pre>plist_options :startup => "true", :manual => "foo start"</pre>
+ # <pre>plist_options :startup => true, :manual => "foo start"</pre>
def plist_options(options)
@plist_startup = options[:startup]
@plist_manual = options[:manual]