Skip to content

Commit

Permalink
Fix a few minor typos/spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mo committed Oct 29, 2012
1 parent ee37c47 commit 2959a7e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion batchprocessor.py
Expand Up @@ -49,7 +49,7 @@ def processLoop():
if not queue:
# Nothing to do right now; sleep a little to avoid a tight loop of
# DB queries. (Not that the query will be expensive at all in the
# forseeable future, but
# foreseeable future, but)

time.sleep(POLLING_INTERVAL)
else:
Expand Down
8 changes: 4 additions & 4 deletions clexer.py
Expand Up @@ -32,7 +32,7 @@
# the preprocessor directive; including any backslashes and linebreak
# characters following backslashes.
#
# Character and string literal tokens are returned exactly as they occured in
# Character and string literal tokens are returned exactly as they occurred in
# the source string, with any escape sequences (including escaped linebreaks)
# preserved.
#
Expand Down Expand Up @@ -83,7 +83,7 @@
#
# Splits the sequence of tokens returned by the iterable 'tokens' by the token
# 'separator'. Normally, the token sequence 'tokens' should be grouped using
# group() first, so that occurences of 'separator' inside groups are ignored.
# group() first, so that occurrences of 'separator' inside groups are ignored.
# The return value is a list of lists of tokens (or lists as created by
# group()).
#
Expand Down Expand Up @@ -127,11 +127,11 @@
#
# line()
#
# Returns the line number (first line=1) at which the token occured.
# Returns the line number (first line=1) at which the token occurred.
#
# column()
#
# Returns the column number (first column=0) at which the token occured.
# Returns the column number (first column=0) at which the token occurred.
#
# isidentifier()
#
Expand Down
2 changes: 1 addition & 1 deletion installation/prereqs.py
Expand Up @@ -127,7 +127,7 @@ def install(*packages):
all_ok = False
print """\
No 'psql' executable found in $PATH. Make sure the PostgreSQL database server
and its client utilities is installed. In Debian/Ubuntu, the packages you need
and its client utilities are installed. In Debian/Ubuntu, the packages you need
to install are 'postgresql-server' and 'postgresql-client'.
"""
if not aptget_approved and install("postgresql", "postgresql-client"):
Expand Down
2 changes: 1 addition & 1 deletion page/search.py
Expand Up @@ -67,7 +67,7 @@ def renderPath(target):
def renderButton(target):
target.button(onclick="search();").text("Search")

search.addItem("Summary", renderSummary, "Words occuring in the review's summary.")
search.addItem("Summary", renderSummary, "Words occurring in the review's summary.")
search.addItem("Branch", renderBranch, "Name of review branch.")
search.addItem("Owner", renderOwner, "Owner of the review.")
search.addItem("Path", renderPath, "Path (file or directory) that the review contains changes in.")
Expand Down
2 changes: 1 addition & 1 deletion resources/createreview.js
Expand Up @@ -164,7 +164,7 @@ function editRecipientList()
{
var recipient_list_dialog =
$("<div id='recipients' title='Edit Recipient List'>"
+ "<p>The recipient list determines the list of users that recieve "
+ "<p>The recipient list determines the list of users that receive "
+ "e-mails about various updates to the review. The recipient "
+ "list is constructed from the list of users associated with the "
+ "review (reviewers and watchers) either in an opt-in or opt-out "
Expand Down
8 changes: 4 additions & 4 deletions syntaxhighlight/clexer.py
Expand Up @@ -32,7 +32,7 @@
# the preprocessor directive; including any backslashes and linebreak
# characters following backslashes.
#
# Character and string literal tokens are returned exactly as they occured in
# Character and string literal tokens are returned exactly as they occurred in
# the source string, with any escape sequences (including escaped linebreaks)
# preserved.
#
Expand Down Expand Up @@ -83,7 +83,7 @@
#
# Splits the sequence of tokens returned by the iterable 'tokens' by the token
# 'separator'. Normally, the token sequence 'tokens' should be grouped using
# group() first, so that occurences of 'separator' inside groups are ignored.
# group() first, so that occurrences of 'separator' inside groups are ignored.
# The return value is a list of lists of tokens (or lists as created by
# group()).
#
Expand Down Expand Up @@ -127,11 +127,11 @@
#
# line()
#
# Returns the line number (first line=1) at which the token occured.
# Returns the line number (first line=1) at which the token occurred.
#
# column()
#
# Returns the column number (first column=0) at which the token occured.
# Returns the column number (first column=0) at which the token occurred.
#
# isidentifier()
#
Expand Down

0 comments on commit 2959a7e

Please sign in to comment.