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.
This commit is contained in:
Ross Penman 2016-08-31 20:17:56 +01:00
parent 2c35d2c939
commit 5f1abcf842
No known key found for this signature in database
GPG Key ID: 716C66489EA786B5

View File

@ -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]