Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos found in POD #74

Merged
merged 1 commit into from Oct 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Facebook/Graph/Cookbook/Recipe1.pod
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
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