From 8caa0a93b60742a39f5e319362c9cf7a764b7145 Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Sun, 27 Aug 2017 17:06:12 -0700 Subject: [PATCH] Fixed javadoc problems related to project snippets. --- src/main/java/org/gitlab4j/api/ProjectApi.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/gitlab4j/api/ProjectApi.java b/src/main/java/org/gitlab4j/api/ProjectApi.java index 0355ba47..e3cb94cd 100644 --- a/src/main/java/org/gitlab4j/api/ProjectApi.java +++ b/src/main/java/org/gitlab4j/api/ProjectApi.java @@ -1353,9 +1353,9 @@ public class ProjectApi extends AbstractApi implements Constants { * * 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 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 code the content of a snippet, required * @param visibility the snippet's visibility, required @@ -1381,10 +1381,10 @@ public class ProjectApi extends AbstractApi implements Constants { * * 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 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 code the content of a snippet, optional * @param visibility the snippet's visibility, reqoptionaluired -- GitLab