Skip to content

Commit

Permalink
Merge pull request #74 from paultcochrane/pr/fix-typos-in-pod
Browse files Browse the repository at this point in the history
Fix typos found in POD
  • Loading branch information
rizen committed Oct 4, 2018
2 parents 41dcff7 + fd2571e commit 59cf66a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Facebook/Graph/Cookbook/Recipe1.pod
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Our connect/authorization page will redirect the user to Facebook to authorize o
# turn our authorization code into an access token
$fb->request_access_token($request->param('code'));

# store our access token to a database, a cookie, or pass it throuh the URL
# store our access token to a database, a cookie, or pass it through the URL
my $uri = URI->new('http://www.yourapplication.com/search');
$uri->query_form( access_token => $fb->access_token );

Expand Down
2 changes: 1 addition & 1 deletion lib/Facebook/Graph/Query.pm
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Facebook::Graph::Query - Simple and fast searching and fetching of Facebook data
=head1 DESCRIPTION
This module presents a programatic approach to building the queries necessary to search and retrieve Facebook data. It provides an almost SQL like way of writing queries using code. For example:
This module presents a programmatic approach to building the queries necessary to search and retrieve Facebook data. It provides an almost SQL like way of writing queries using code. For example:
my $results = $fb
->select_fields(qw(id name))
Expand Down

0 comments on commit 59cf66a

Please sign in to comment.