Fix typos in TypeScript and SCSS files
See [#5136][0]. [0]: https://github.com/signalapp/Signal-Desktop/pull/5136
This commit is contained in:
parent
d77e8804e3
commit
9823eb2201
12 changed files with 16 additions and 16 deletions
|
@ -3091,7 +3091,7 @@ export class ConversationModel extends window.Backbone.Model<
|
|||
}
|
||||
|
||||
// We are only creating this model so we can use its sync message
|
||||
// sending functionality. It will not be saved to the datbase.
|
||||
// sending functionality. It will not be saved to the database.
|
||||
const message = new window.Whisper.Message(attributes);
|
||||
|
||||
// We're offline!
|
||||
|
@ -3201,7 +3201,7 @@ export class ConversationModel extends window.Backbone.Model<
|
|||
}
|
||||
|
||||
// We are only creating this model so we can use its sync message
|
||||
// sending functionality. It will not be saved to the datbase.
|
||||
// sending functionality. It will not be saved to the database.
|
||||
const message = new window.Whisper.Message(attributes);
|
||||
|
||||
// This is to ensure that the functions in send() and sendSyncMessage() don't save
|
||||
|
@ -5312,11 +5312,11 @@ window.Whisper.GroupMemberConversation = window.Backbone.Model.extend({
|
|||
|
||||
if (!conversation) {
|
||||
throw new Error(
|
||||
'GroupMemberConversation.initialze: conversation required!'
|
||||
'GroupMemberConversation.initialize: conversation required!'
|
||||
);
|
||||
}
|
||||
if (!window._.isBoolean(isAdmin)) {
|
||||
throw new Error('GroupMemberConversation.initialze: isAdmin required!');
|
||||
throw new Error('GroupMemberConversation.initialize: isAdmin required!');
|
||||
}
|
||||
|
||||
// If our underlying conversation changes, we change too
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue