Skip to content

Commit f0cf47f

Browse files
committed
Fixed Javadoc issues (#425).
1 parent f4a6087 commit f0cf47f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/java/org/gitlab4j/api/SearchApi.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public SearchApi(GitLabApi gitLabApi) {
2626
/**
2727
* Search globally across the GitLab instance.
2828
*
29-
* <pre><code>GitLab Endpoint: POST /search?scope=:scope&search=:search-query</code></pre>
29+
* <pre><code>GitLab Endpoint: POST /search?scope=:scope&amp;search=:search-query</code></pre>
3030
*
3131
* @param scope search the expression within the specified scope. Currently these scopes are supported:
3232
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
@@ -42,7 +42,7 @@ public List<?> globalSearch(SearchScope scope, String search) throws GitLabApiEx
4242
/**
4343
* Search globally across the GitLab instance.
4444
*
45-
* <pre><code>GitLab Endpoint: POST /search?scope=:scope&search=:search-query</code></pre>
45+
* <pre><code>GitLab Endpoint: POST /search?scope=:scope&amp;search=:search-query</code></pre>
4646
*
4747
* @param scope search the expression within the specified scope. Currently these scopes are supported:
4848
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
@@ -58,7 +58,7 @@ public Stream<?> globalSearchStream(SearchScope scope, String search) throws Git
5858
/**
5959
* Search globally across the GitLab instance.
6060
*
61-
* <pre><code>GitLab Endpoint: POST /search?scope=:scope&search=:search-query</code></pre>
61+
* <pre><code>GitLab Endpoint: POST /search?scope=:scope&amp;search=:search-query</code></pre>
6262
*
6363
* @param scope search the expression within the specified scope. Currently these scopes are supported:
6464
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
@@ -114,7 +114,7 @@ public Pager<?> globalSearch(SearchScope scope, String search, int itemsPerPage)
114114
* Search within the specified group. If a user is not a member of a group and the group is private,
115115
* a request on that group will result to a 404 status code.
116116
*
117-
* <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query</code></pre>
117+
* <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&amp;search=:search-query</code></pre>
118118
*
119119
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
120120
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -132,7 +132,7 @@ public List<?> groupSearch(Object groupIdOrPath, GroupSearchScope scope, String
132132
* Search within the specified group. If a user is not a member of a group and the group is private,
133133
* a request on that group will result to a 404 status code.
134134
*
135-
* <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query</code></pre>
135+
* <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&amp;search=:search-query</code></pre>
136136
*
137137
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
138138
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -150,7 +150,7 @@ public Stream<?> groupSearchStream(Object groupIdOrPath, GroupSearchScope scope,
150150
* Search within the specified group. If a user is not a member of a group and the group is private,
151151
* a request on that group will result to a 404 status code.
152152
*
153-
* <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query</code></pre>
153+
* <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&amp;search=:search-query</code></pre>
154154
*
155155
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
156156
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -197,7 +197,7 @@ public Pager<?> groupSearch(Object groupIdOrPath, GroupSearchScope scope, String
197197
* Search within the specified project. If a user is not a member of a project and the project is private,
198198
* a request on that project will result to a 404 status code.
199199
*
200-
* <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query</code></pre>
200+
* <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&amp;search=:search-query</code></pre>
201201
*
202202
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
203203
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -215,7 +215,7 @@ public List<?> projectSearch(Object projectIdOrPath, ProjectSearchScope scope, S
215215
* Search within the specified project. If a user is not a member of a project and the project is private,
216216
* a request on that project will result to a 404 status code.
217217
*
218-
* <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query</code></pre>
218+
* <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&amp;search=:search-query</code></pre>
219219
*
220220
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
221221
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -233,7 +233,7 @@ public Stream<?> projectSearchStream(Object projectIdOrPath, ProjectSearchScope
233233
* Search within the specified project. If a user is not a member of a project and the project is private,
234234
* a request on that project will result to a 404 status code.
235235
*
236-
* <pre><code>GitLab Endpoint: POST /project/:projectId/search?scope=:scope&search=:search-query</code></pre>
236+
* <pre><code>GitLab Endpoint: POST /project/:projectId/search?scope=:scope&amp;search=:search-query</code></pre>
237237
*
238238
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
239239
* @param scope search the expression within the specified scope. Currently these scopes are supported:

0 commit comments

Comments
 (0)