Skip to content

Commit

Permalink
[#46] fixed typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
jnguyenx committed Jan 25, 2017
1 parent cf2e614 commit 3acf79c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ or for some versions of dropwizard:

Example query using default config:

http://localhost:8080/api/match/jaccard?id=X:Fheart-morphology&id=X:brain-morphology
http://localhost:8080/api/match/jaccard?id=X:heart-morphology&id=X:brain-morphology
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public Collection<String> getMatchers() {
public MatchSet getMatches(
@ApiParam(value = "The name of the matcher to use",
required = true) @PathParam("matcher") String matcherName,
@ApiParam(value = "Class IDs to be matched", required = false,
allowMultiple = true) @QueryParam("id") Set<String> ids,
@ApiParam(value = "Class IDs to be matched",
required = false) @QueryParam("id") Set<String> ids,
@ApiParam(value = "Negated Class IDs",
required = false) @QueryParam("negatedId") Set<String> negatedIds,
@ApiParam(value = "Target Class IDs",
Expand Down

0 comments on commit 3acf79c

Please sign in to comment.