Skip to content

Commit

Permalink
Minor doc cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
forest committed Mar 26, 2014
1 parent a3dc490 commit 0ba22d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/tracker_api/resources/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Project
attribute :version, Integer
attribute :week_start_day, String

# @return [String] Comma separated list of labels.
# @return [String] comma separated list of labels
def label_list
@label_list ||= labels.collect(&:name).join(',')
end
Expand Down Expand Up @@ -76,13 +76,13 @@ def iterations(params = {})
# @option params [Integer] :offset With the first story in your priority list as 0,
# the index of the first story you want returned.
# @option params [Integer] :limit The number of stories you want returned.
# @return [Array[Story]] iterations associated with this project
# @return [Array[Story]] stories associated with this project
def stories(params = {})
Endpoints::Stories.new(client).get(id, params)
end

# @param [Fixnum] story_id id of story
# @return [Story]
# @param [Fixnum] story_id id of story to get
# @return [Story] Story with given id
def story(story_id)
Endpoints::Story.new(client).get(id, story_id)
end
Expand Down

0 comments on commit 0ba22d0

Please sign in to comment.