Commit eef5ab33 authored by Samuel Giddins's avatar Samuel Giddins Committed by GitHub

Merge pull request #5671 from DanToml/dan_update_installer_docs

[Installer] Make use of 'Boolean' consistent in docs
parents 4e3a738e 4acddaf6
...@@ -80,7 +80,7 @@ module Pod ...@@ -80,7 +80,7 @@ module Pod
# #
attr_accessor :update attr_accessor :update
# @return [Bool] Whether the spec repos should be updated. # @return [Boolean] Whether the spec repos should be updated.
# #
attr_accessor :repo_update attr_accessor :repo_update
alias_method :repo_update?, :repo_update alias_method :repo_update?, :repo_update
...@@ -632,7 +632,7 @@ module Pod ...@@ -632,7 +632,7 @@ module Pod
# #
# @raise Raises an informative if the hooks raises. # @raise Raises an informative if the hooks raises.
# #
# @return [Bool] Whether the hook was run. # @return [Boolean] Whether the hook was run.
# #
def run_podfile_pre_install_hook def run_podfile_pre_install_hook
podfile.pre_install!(self) podfile.pre_install!(self)
...@@ -660,7 +660,7 @@ module Pod ...@@ -660,7 +660,7 @@ module Pod
# #
# @raise Raises an informative if the hooks raises. # @raise Raises an informative if the hooks raises.
# #
# @return [Bool] Whether the hook was run. # @return [Boolean] Whether the hook was run.
# #
def run_podfile_post_install_hook def run_podfile_post_install_hook
podfile.post_install!(self) podfile.post_install!(self)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment