fix lines that are too long

Each line was fixed by one of these:
- changing the wording
- breaking into separate lines
- adding eslint-disable-line max-len (necessary for `@api ` lines because
a line break there causes the first part of the text to not be displayed
on the apidocs website)
This commit is contained in:
Alys
2020-02-08 14:55:21 +10:00
parent 1b39338eec
commit ac52da5be2
6 changed files with 15 additions and 10 deletions

View File

@@ -5,9 +5,10 @@ import { authWithHeaders } from '../../../middlewares/auth';
const api = {};
/**
* @api {post} /api/v3/user/allocate Allocate a single Stat Point (previously called Attribute Point)
* @api {post} /api/v3/user/allocate Allocate a single Stat Point
* @apiName UserAllocate
* @apiGroup User
* @apiDescription Allocates a single Stat Point (previously called Attribute Point).
*
* @apiParam (Query) {String="str","con","int","per"} stat The Stat to increase. Default is 'str'
*