Skip to content

Commit

Permalink
Fix remaining *args and &blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolai Weibull committed May 3, 2012
1 parent d2a2941 commit d16d932
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/lookout/actual/method.rb
Expand Up @@ -6,8 +6,8 @@
class Lookout::Actual::Method
# Proxies _method_, passing in _args_ and _block_ when {#call}ed.
# @param [Symbol] method
# @param [Object, …] *args
# @param [Proc] &block
# @param [Object, …] args
# @param [Proc] block
Value(:method, :'*args', :'&block')

# @param [Object] actual
Expand Down
2 changes: 1 addition & 1 deletion lib/lookout/diff/group.rb
Expand Up @@ -3,7 +3,7 @@
# Ordered sequence of related {Operation}s; type enumerated by {Groups}.
class Lookout::Diff::Group
# Initializes the group with an initial sequence of _operations_.
# @param [Operation, …] *operations
# @param [Operation, …] operations
Value(:'*operations')
include Enumerable

Expand Down
2 changes: 1 addition & 1 deletion lib/lookout/mock/method/arguments/list.rb
Expand Up @@ -4,7 +4,7 @@
# {Lookout::Difference} to do the actual work.
class Lookout::Mock::Method::Arguments::List
# Expects _args_.
# @param [Object, …] *args
# @param [Object, …] args
Value(:'*args')

# @param [Array<Object>] other
Expand Down

0 comments on commit d16d932

Please sign in to comment.