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 documentation for GetRecord and fix some typos #61

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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 docs/credits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Credits
=======

* Inspired by the "for humans approach" of `requests <http://docs.python-requests.org/en/latest/>`_
* `pyoai <https://github.com/infrae/pyoai/>`_ also provided valueable inspiration
* `pyoai <https://github.com/infrae/pyoai/>`_ also provided valuable inspiration
* Sickle logo: Free `Valentina typeface <http://pedroarilla.com/en/valentina>`_
by Pedro Arilla and
`public domain image <http://commons.wikimedia.org/wiki/File:Sickle_(PSF).png>`_
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Issuing Requests
================

Sickle provides methods for each of the six OAI verbs (ListRecords, GetRecord,
Idenitfy, ListSets, ListMetadataFormats, ListIdentifiers). Start with a
Identify, ListSets, ListMetadataFormats, ListIdentifiers). Start with a
ListRecords request::

>>> records = sickle.ListRecords(metadataPrefix='oai_dc')
Expand Down
2 changes: 1 addition & 1 deletion sickle/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def Identify(self):
return Identify(self.harvest(**params))

def GetRecord(self, **kwargs):
"""Issue a ListSets request."""
"""Issue a GetRecord request."""
params = kwargs
params.update({'verb': 'GetRecord'})
record = self.iterator(self, params).next()
Expand Down