aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2016-08-31 21:41:04 +0100
committerGitHub2016-08-31 21:41:04 +0100
commit5d5b9a78535fbc1f9c31d02991f13120e205f9e8 (patch)
treeeb57c3a051144ed9b26e6375a6a354c2e5c6d788 /Library/Homebrew
parent2c35d2c939b3cf9dc3824042a824a9deb211f137 (diff)
parent5f1abcf84210d20fe8276d0216a7c8e39f326398 (diff)
downloadbrew-5d5b9a78535fbc1f9c31d02991f13120e205f9e8.tar.bz2
Merge pull request #842 from penman/docs_plist_options
docs: fix a typo in plist_options?
Diffstat (limited to 'Library/Homebrew')
-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]