config/definitions.rb in checkoff-0.46.0 vs config/definitions.rb in checkoff-0.46.1
- old
+ new
@@ -81,11 +81,11 @@
# # or associations between it and other objects are modified (e.g.
# # a task being added to a project). A task is not considered modified
# # just because another object it is associated with (e.g. a subtask)
# # is modified. Actions that count as modifying the task include
# # assigning, renaming, completing, and adding stories.
-# # @return [Asana::Collection<Asana::Resources::Task>]
+# # @return [Enumerable<Asana::Resources::Task>]
# def find_all(assignee: nil, workspace: nil, project: nil, section: nil,
# tag: nil, user_task_list: nil, completed_since: nil,
# modified_since: nil, per_page: 20, options: {}); end
# # @param section [Asana::Resources::section]
# # @param options [Hash] the request I/O options.
@@ -104,10 +104,10 @@
# def find_all; end
# end
# class Section
# # @param project_gid [String]
# # @return [Enumerable<Asana::Resources::Section>]
-# def get_sections_for_project(client, project_gid:, options: {}); end
+# def get_sections_for_project(project_gid:, options: {}); end
# end
# class Project
# # Returns the compact project records for all projects in the workspace.
# #
# # @param workspace [Strin] The workspace or organization to find projects in.