Improve docs a bit

This commit is contained in:
Crawl
2017-04-30 04:30:44 +02:00
parent 3f8c0a4d11
commit ac92d2cecc
83 changed files with 716 additions and 711 deletions

View File

@@ -1,10 +1,10 @@
/**
* Represents a user connection (or "platform identity")
* Represents a user connection (or "platform identity").
*/
class UserConnection {
constructor(user, data) {
/**
* The user that owns the Connection
* The user that owns the connection
* @type {User}
*/
this.user = user;
@@ -14,7 +14,7 @@ class UserConnection {
setup(data) {
/**
* The type of the Connection
* The type of the connection
* @type {string}
*/
this.type = data.type;