Skip to content
This repository has been archived by the owner on Mar 9, 2019. It is now read-only.

Commit

Permalink
Renamed references to activities_list
Browse files Browse the repository at this point in the history
  • Loading branch information
philipbjorge committed Sep 27, 2012
1 parent 1b16b52 commit 2f12427
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ Lastly, you can get a list of activities for a person, which is returned as a `G
Or if you just want one page, you can have it: Or if you just want one page, you can have it:


person = GooglePlus::Person.new(123) person = GooglePlus::Person.new(123)
activites = person.activities_list.items activites = person.list_activities.items


You can also set the cursor size at any time using any of these variations: You can also set the cursor size at any time using any of these variations:


# on the cursor # on the cursor
cursor = person.activities_list(:max_results => 10) cursor = person.list_activities(:max_results => 10)
# or on the page # or on the page
items = cursor.next_page(:max_results => 5) items = cursor.next_page(:max_results => 5)


Expand Down

0 comments on commit 2f12427

Please sign in to comment.