[local-sync] s/queryes/queries/

This commit is contained in:
Christine Spang 2017-01-10 08:26:44 -08:00
parent b618c4ef28
commit ac08163c51
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ module.exports = (sequelize) => {
// the order ['labelId', 'messageId']. This is the correct index we
// need for queries requesting Messages for a certain Label.
//
// We need to create one more index to allow queryes from the
// We need to create one more index to allow queries from the
// reverse direction requesting Labels for a certain Message.
{fields: ['messageId', 'labelId']},
],

View file

@ -17,7 +17,7 @@ module.exports = (sequelize) => {
// the order ['threadId', 'folderId']. This is the correct index we
// need for queries requesting Folders for a certain Thread.
//
// We need to create one more index to allow queryes from the
// We need to create one more index to allow queries from the
// reverse direction requesting Threads for a certain Folder.
{fields: ['folderId', 'threadId']},
],

View file

@ -17,7 +17,7 @@ module.exports = (sequelize) => {
// the order ['labelId', 'threadId']. This is the correct index we
// need for queries requesting Threads for a certain Label.
//
// We need to create one more index to allow queryes from the
// We need to create one more index to allow queries from the
// reverse direction requesting Labels for a certain Thread.
{fields: ['threadId', 'labelId']},
],