Make bot/user account warnings MOAR CONSISTENT!!one!

This commit is contained in:
Schuyler Cebulskie
2016-11-12 17:15:17 -05:00
parent 1e8392d90b
commit ce132d5f54
5 changed files with 25 additions and 25 deletions

View File

@@ -99,7 +99,7 @@ class User {
/**
* The note that is set for the user
* <warn>This is only available for user accounts.</warn>
* <warn>This is only available when using a user account.</warn>
* @type {?string}
* @readonly
*/
@@ -147,7 +147,7 @@ class User {
/**
* Sends a friend request to the user
* <warn>This is only available for user accounts.</warn>
* <warn>This is only available when using a user account.</warn>
* @returns {Promise<User>}
*/
addFriend() {
@@ -156,7 +156,7 @@ class User {
/**
* Removes the user from your friends
* <warn>This is only available for user accounts.</warn>
* <warn>This is only available when using a user account.</warn>
* @returns {Promise<User>}
*/
removeFriend() {
@@ -165,7 +165,7 @@ class User {
/**
* Blocks the user
* <warn>This is only available for user accounts.</warn>
* <warn>This is only available when using a user account.</warn>
* @returns {Promise<User>}
*/
block() {
@@ -174,7 +174,7 @@ class User {
/**
* Unblocks the user
* <warn>This is only available for user accounts.</warn>
* <warn>This is only available when using a user account.</warn>
* @returns {Promise<User>}
*/
unblock() {
@@ -183,6 +183,7 @@ class User {
/**
* Get the profile of the user
* <warn>This is only available when using a user account.</warn>
* @returns {Promise<UserProfile>}
*/
fetchProfile() {
@@ -191,7 +192,7 @@ class User {
/**
* Sets a note for the user
* <warn>This is only available for user accounts.</warn>
* <warn>This is only available when using a user account.</warn>
* @param {string} note The note to set for the user
* @returns {Promise<User>}
*/