mirror of https://gitee.com/bigwinds/arangodb
Consistent punctuation.
This commit is contained in:
parent
a7448815bf
commit
b2f6f29c55
|
@ -27,7 +27,7 @@ controller.get('/', function (req, res) {
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
|
|
||||||
/** Creates a new <%= modelInstance %>
|
/** Creates a new <%= modelInstance %>.
|
||||||
*
|
*
|
||||||
* Creates a new <%= modelInstance %>. The information has to be in the
|
* Creates a new <%= modelInstance %>. The information has to be in the
|
||||||
* requestBody.
|
* requestBody.
|
||||||
|
@ -41,7 +41,7 @@ controller.post('/', function (req, res) {
|
||||||
type: <%= model %>
|
type: <%= model %>
|
||||||
});
|
});
|
||||||
|
|
||||||
/** Reads a <%= modelInstance %>
|
/** Reads a <%= modelInstance %>.
|
||||||
*
|
*
|
||||||
* Reads a <%= modelInstance %>.
|
* Reads a <%= modelInstance %>.
|
||||||
*/
|
*/
|
||||||
|
@ -52,7 +52,7 @@ controller.get('/:id', function (req, res) {
|
||||||
.pathParam('id', <%= modelInstance %>IdSchema)
|
.pathParam('id', <%= modelInstance %>IdSchema)
|
||||||
.errorResponse(ArangoError, 404, 'The <%= modelInstance %> could not be found');
|
.errorResponse(ArangoError, 404, 'The <%= modelInstance %> could not be found');
|
||||||
|
|
||||||
/** Replaces a <%= modelInstance %>
|
/** Replaces a <%= modelInstance %>.
|
||||||
*
|
*
|
||||||
* Changes a <%= modelInstance %>. The information has to be in the
|
* Changes a <%= modelInstance %>. The information has to be in the
|
||||||
* requestBody.
|
* requestBody.
|
||||||
|
@ -69,7 +69,7 @@ controller.put('/:id', function (req, res) {
|
||||||
})
|
})
|
||||||
.errorResponse(ArangoError, 404, 'The <%= modelInstance %> could not be found');
|
.errorResponse(ArangoError, 404, 'The <%= modelInstance %> could not be found');
|
||||||
|
|
||||||
/** Updates a <%= modelInstance %>
|
/** Updates a <%= modelInstance %>.
|
||||||
*
|
*
|
||||||
* Changes a <%= modelInstance %>. The information has to be in the
|
* Changes a <%= modelInstance %>. The information has to be in the
|
||||||
* requestBody.
|
* requestBody.
|
||||||
|
@ -86,7 +86,7 @@ controller.patch('/:id', function (req, res) {
|
||||||
})
|
})
|
||||||
.errorResponse(ArangoError, 404, 'The <%= modelInstance %> could not be found');
|
.errorResponse(ArangoError, 404, 'The <%= modelInstance %> could not be found');
|
||||||
|
|
||||||
/** Removes a <%= modelInstance %>
|
/** Removes a <%= modelInstance %>.
|
||||||
*
|
*
|
||||||
* Removes a <%= modelInstance %>.
|
* Removes a <%= modelInstance %>.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue