Bug 735124 - Fix "does't" spelling. r=mbanner

This commit is contained in:
Arjun 2012-05-04 22:01:54 -04:00
Родитель b5c0c33662
Коммит 09c7dc8741
7 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -1210,7 +1210,7 @@ FolderDisplayWidget.prototype = {
// [0, 0] with 0 rows. If that happens, we need to fix up the selection
// here.
if (rowCount == 0 && treeSelection.count)
// nsTreeSelection does't generate an event if we use clearRange, so use
// nsTreeSelection doesn't generate an event if we use clearRange, so use
// that to avoid spurious events, given that we are going to definitely
// trigger a change notification below.
treeSelection.clearRange(0, 0);

Просмотреть файл

@ -165,7 +165,7 @@ let mailTabType = {
// inherit from the previous tab (if we've got one)
else if (modelTab)
messagePaneShouldBeVisible = modelTab.messageDisplay.visible;
// who does't love a message pane?
// who doesn't love a message pane?
else
messagePaneShouldBeVisible = true;

Просмотреть файл

@ -60,7 +60,7 @@ MessageDisplayWidget.prototype = {
/**
* Track whether the single message display pane is desired to be displayed
* (it is actually displayed when active, does't matter when not), or
* (it is actually displayed when active, doesn't matter when not), or
* otherwise the multiple message display pane is desired to be displayed.
*/
_singleMessageDisplay: null,

Просмотреть файл

@ -1173,7 +1173,7 @@ DBViewWrapper.prototype = {
if (aOldFolder == this.displayedFolder)
this.displayedFolder = aNewFolder;
// indexOf does't work for this (reliably)
// indexOf doesn't work for this (reliably)
for each (let [i,underlyingFolder] in Iterator(this._underlyingFolders)) {
if (aOldFolder == underlyingFolder) {
this._underlyingFolders[i] = aNewFolder;
@ -1209,7 +1209,7 @@ DBViewWrapper.prototype = {
return;
}
// indexOf does't work for this (reliably)
// indexOf doesn't work for this (reliably)
for each (let [i,underlyingFolder] in Iterator(this._underlyingFolders)) {
if (aFolder == underlyingFolder) {
this._underlyingFolders.splice(i,1);

Просмотреть файл

@ -272,7 +272,7 @@ MimeMessageEmitter.prototype = {
// nop
},
writeHTMLHeaders: function mime_emitter_writeHTMLHeaders(aName) {
// It does't look like this should even be part of the interface; I think
// It doesn't look like this should even be part of the interface; I think
// only the nsMimeHtmlDisplayEmitter::EndHeader call calls this signature.
// nop
},

Просмотреть файл

@ -195,7 +195,7 @@ GlodaDatabind.prototype = {
if (this._updateFulltextStmt) {
stmt = this._updateFulltextStmt;
// fulltextColumns does't include id/docid, need to explicitly set it
// fulltextColumns doesn't include id/docid, need to explicitly set it
stmt.bindInt64Parameter(0, aThing[this._idAttr]);
for each (let [iColDef, colDef] in
Iterator(this._tableDef.fulltextColumns)) {

Просмотреть файл

@ -1080,7 +1080,7 @@ var GlodaDatastore = {
// Create the file if it does not exist
if (!dbFile.exists()) {
this._log.debug("Creating database because it does't exist.");
this._log.debug("Creating database because it doesn't exist.");
dbConnection = this._createDB(dbService, dbFile);
}
// It does exist, but we (someday) might need to upgrade the schema