fix: actually fix Readonly typos

This commit is contained in:
Isabella
2018-08-21 14:25:30 -05:00
parent c59d3299bc
commit 928fb30040
7 changed files with 14 additions and 14 deletions

View File

@@ -39,13 +39,13 @@ class PermissionOverwrites {
/**
* The permissions that are denied for the user or role.
* @type {ReadOnly<Permissions>}
* @type {Readonly<Permissions>}
*/
this.deny = new Permissions(data.deny).freeze();
/**
* The permissions that are allowed for the user or role.
* @type {ReadOnly<Permissions>}
* @type {Readonly<Permissions>}
*/
this.allow = new Permissions(data.allow).freeze();
}