diff options
| author | Ross Penman | 2016-08-31 20:17:56 +0100 |
|---|---|---|
| committer | Ross Penman | 2016-08-31 20:19:14 +0100 |
| commit | 5f1abcf84210d20fe8276d0216a7c8e39f326398 (patch) | |
| tree | eb57c3a051144ed9b26e6375a6a354c2e5c6d788 /Library | |
| parent | 2c35d2c939b3cf9dc3824042a824a9deb211f137 (diff) | |
| download | brew-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.rb | 2 |
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] |
