Commit 8caa0a93 authored by Greg Messner's avatar Greg Messner
Browse files

Fixed javadoc problems related to project snippets.

parent 63ee9bf8
...@@ -1353,9 +1353,9 @@ public class ProjectApi extends AbstractApi implements Constants { ...@@ -1353,9 +1353,9 @@ public class ProjectApi extends AbstractApi implements Constants {
* *
* POST /projects/:id/snippets * POST /projects/:id/snippets
* *
* @param id the ID of the project owned by the authenticated user, required * @param projectId the ID of the project owned by the authenticated user, required
* @param title the title of a snippet, required * @param title the title of a snippet, required
* @param fileName the name of a snippet file, required * @param filename the name of a snippet file, required
* @param description the description of a snippet, optional * @param description the description of a snippet, optional
* @param code the content of a snippet, required * @param code the content of a snippet, required
* @param visibility the snippet's visibility, required * @param visibility the snippet's visibility, required
...@@ -1381,10 +1381,10 @@ public class ProjectApi extends AbstractApi implements Constants { ...@@ -1381,10 +1381,10 @@ public class ProjectApi extends AbstractApi implements Constants {
* *
* PUT /projects/:id/snippets/:snippet_id * PUT /projects/:id/snippets/:snippet_id
* *
* @param id the ID of the project owned by the authenticated user, required * @param projectId the ID of the project owned by the authenticated user, required
* @param snippetId the ID of a project's snippet, required * @param snippetId the ID of a project's snippet, required
* @param title the title of a snippet, optional * @param title the title of a snippet, optional
* @param fileName the name of a snippet file, optional * @param filename the name of a snippet file, optional
* @param description the description of a snippet, optioptionalonal * @param description the description of a snippet, optioptionalonal
* @param code the content of a snippet, optional * @param code the content of a snippet, optional
* @param visibility the snippet's visibility, reqoptionaluired * @param visibility the snippet's visibility, reqoptionaluired
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment