Ignore:
Timestamp:
Jan 12, 2013, 1:43:13 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
e3a0d71, 4485285
Parents:
4626016
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
Message:
Remove trailing whitespace

This commit was made with the command sequence

    for i in $(git ls-files | tr '\n' ' ');
    do
      echo $i; sed -i s'/\s\+$//g' "$(readlink -f $i)";
    done
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/Facebook/lib/Facebook/Graph/Query.pm

    rb7fa912 r7869e48  
    7979    my ($self, $limit) = @_;
    8080    $self->limit($limit);
    81     return $self;   
     81    return $self;
    8282}
    8383
     
    109109    my ($self, $offset) = @_;
    110110    $self->offset($offset);
    111     return $self;   
     111    return $self;
    112112}
    113113
     
    215215
    216216 my $fb = Facebook::Graph->new;
    217  
     217
    218218 my $perl_page = $fb->find('16665510298')
    219219    ->include_metadata
    220220    ->request
    221221    ->as_hashref;
    222  
     222
    223223 my $sarah_bownds = $fb->find('sarahbownds')
    224224    ->select_fields(qw(id name))
     
    254254    ->request
    255255    ->as_hashref;
    256    
     256
    257257The above query, if you were read it like text, says: "Give me the user ids and full names of all users named Dave that have been created since yesterday, and limit the result set to the first 25."
    258258
     
    314314=head2 search ( query, context )
    315315
    316 Perform a keyword search on a group of items. 
     316Perform a keyword search on a group of items.
    317317
    318318If you prefer not to search by keyword see the C<from> method.
Note: See TracChangeset for help on using the changeset viewer.