1
0
Fork 0
arangodb/Documentation/DocuBlocks/JSF_foxx_RequestContext_not...

400 B

Route.notes(...description)

Set the long description for this route in the documentation

Examples

Version with comment:

/** Short description
 * 
 * Longer description
 * with multiple lines
 */
app.get("/foxx", function() {
});

is identical to:

app.get("/foxx", function() {
})
.summary("Short description")
.notes(["Longer description", "with multiple lines"]);