Unverified Commit 837e1ab3 authored by Greg Messner's avatar Greg Messner Committed by GitHub
Browse files

Corrected example for NotesApi.

parent 7cd9f262
...@@ -171,8 +171,8 @@ List<Namespace> namespaces = gitLabApi.getNamespaceApi().findNamespaces("foobar" ...@@ -171,8 +171,8 @@ List<Namespace> namespaces = gitLabApi.getNamespaceApi().findNamespaces("foobar"
### NotesApi ### NotesApi
```java ```java
// Get a list of the issues's notes for project ID 1234, issue ID 1 // Get a list of the issues's notes for project ID 1234, issue IID 1
List<Note> notes = getNotes(Integer 1234, Integer 1); List<Note> notes = getNotes(1234, 1);
``` ```
### PipelineApi ### PipelineApi
......
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