1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fix some documentation typos (closes #7711)

git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@6715 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2007-05-11 03:50:41 +00:00
parent 979282fba9
commit 6266dd73fd
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fix some documentation typos [eventualbuddha]
* Don't retry failed connections if an explicit auth_methods list is given [Chris Farms]
* Added support for load and exit callbacks, which get invoked when all recipes have been loaded and when all requested tasks have been executed [Jamis Buck]

View file

@ -7,7 +7,7 @@ require 'capistrano/cli/ui'
module Capistrano
# The CLI class encapsulates the behavior of capistrano when it is invoked
# as a command-line utility. This allows other programs to embed Capistrano
# and preserve it's command-line semantics.
# and preserve its command-line semantics.
class CLI
# The array of (unparsed) command-line options
attr_reader :args
@ -19,7 +19,7 @@ module Capistrano
# require 'capistrano/cli'
# Capistrano::CLI.parse(%w(-vvvv -r config/deploy update_code)).execute!
#
# Note that you can also embed cao directly by creating a new Configuration
# Note that you can also embed cap directly by creating a new Configuration
# instance and setting it up, but you'll often wind up duplicating logic
# defined in the CLI class. The above snippet, redone using the Configuration
# class directly, would look like: