Skip to content

Commit

Permalink
docs and comments: normalize spelling of dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
clepple committed Oct 26, 2010
1 parent 313ae15 commit d056d31
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion master/buildbot/master.py
Expand Up @@ -790,7 +790,7 @@ def loadConfig(self, f, check_synchronously_only=False):
log.err(errmsg)
raise ValueError(errmsg)

# Fix the dictionnary with default values, in case this wasn't
# Fix the dictionary with default values, in case this wasn't
# specified with a BuilderConfig object (which sets the same defaults)
b.setdefault('builddir', safeTranslate(b['name']))
b.setdefault('slavebuilddir', b['builddir'])
Expand Down
10 changes: 5 additions & 5 deletions master/buildbot/status/web/console.py
Expand Up @@ -278,9 +278,9 @@ def getChangeForBuild(self, build, revision):

def getAllBuildsForRevision(self, status, request, lastRevision, numBuilds,
categories, builders, debugInfo):
"""Returns a dictionnary of builds we need to inspect to be able to
"""Returns a dictionary of builds we need to inspect to be able to
display the console page. The key is the builder name, and the value is
an array of build we care about. We also returns a dictionnary of
an array of build we care about. We also returns a dictionary of
builders we care about. The key is it's category.
lastRevision is the last revision we want to display in the page.
Expand All @@ -292,7 +292,7 @@ def getAllBuildsForRevision(self, status, request, lastRevision, numBuilds,

allBuilds = dict()

# List of all builders in the dictionnary.
# List of all builders in the dictionary.
builderList = dict()

debugInfo["builds_scanned"] = 0
Expand All @@ -318,7 +318,7 @@ def getAllBuildsForRevision(self, status, request, lastRevision, numBuilds,
if not builderList.get(category):
builderList[category] = []

# Append this builder to the dictionnary of builders.
# Append this builder to the dictionary of builders.
builderList[category].append(builderName)
# Set the list of builds for this builder.
allBuilds[builderName] = self.getBuildsForRevision(request,
Expand Down Expand Up @@ -549,7 +549,7 @@ def displayPage(self, request, status, builderList, allBuilds, revisions,
for revision in revisions:
r = {}

# Fill the dictionnary with these new information
# Fill the dictionary with this new information
r['id'] = revision.revision
r['link'] = revision.revlink
r['who'] = revision.who
Expand Down
2 changes: 1 addition & 1 deletion master/docs/cfg-builders.texinfo
Expand Up @@ -134,7 +134,7 @@ only if the Builder's @code{mergeRequests} key is True, so merging
only takes place if both allow it. @pxref{Merging BuildRequests}.

@item properties
A builder may be given a dictionnary of @pxref{Build Properties}
A builder may be given a dictionary of @pxref{Build Properties}
specific for this builder in this parameter. Those values can be used
later on like other properties. @pxref{WithProperties}.

Expand Down

0 comments on commit d056d31

Please sign in to comment.