1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Fix PR comments: typos and redundant line

This commit is contained in:
David Baker
2016-01-20 18:52:32 +00:00
parent b4e4aaff00
commit a24a9d35c4
2 changed files with 2 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ function Room(roomId, opts) {
utils.inherits(Room, EventEmitter);
/**
* Get one of the notification counst for this room
* Get one of the notification counts for this room
* @param {String} type The type of notification count to get. default: 'total'
* @return {Number} The notification count, or undefined if there is no count
* for this type.
@@ -135,7 +135,7 @@ Room.prototype.getUnreadNotificationCount = function(type) {
};
/**
* Set one of the notification counst for this room
* Set one of the notification counts for this room
* @param {String} type The type of notification count to set.
* @param {Number} type The new count
*/