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 some typos (found by codespell) #7

Open
wants to merge 1 commit 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/source/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Introduction
============

BASE OAI-PMH Validity Checker (OVAL) is a tool for
checking document servers' compatibilty to the
checking document servers' compatibility to the
harvester and indexer of Bielefeld Academic Search
Engine (BASE). This involves mainly the validation of
compliance with the Open Archives Protocol for Metadata
Expand All @@ -25,4 +25,4 @@ The :mod:`~oval.validator` module is the high-level user
interface that should be used by external programs.

It is based on the :mod:`~oval.harvester` module, which takes
care of the low-level OAI-PMH communication.
care of the low-level OAI-PMH communication.
2 changes: 1 addition & 1 deletion oval/harvester.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class RecordIterator(object):
:param metadataPrefix: The OAI-PMH metadataPrefix attribute.
:param _from: Optional date offset.
:param until: Optional date limit.
:param deleted: Flag specifiying whether deleted records should be
:param deleted: Flag specifying whether deleted records should be
included
"""
def __init__(self, verb, metadataPrefix, _from=None, until=None,
Expand Down
2 changes: 1 addition & 1 deletion oval/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import os

# Add local directoty to import path
# Add local directory to import path
this_dir, this_filename = os.path.split(__file__)
sys.path.insert(0, os.path.abspath(this_dir))

Expand Down