CompletableFuture patch()

in src/main/java/com/spotify/github/v3/clients/GitHubClient.java [697:704]


  CompletableFuture<Response> patch(final String path, final String data) {
    final Request request =
        requestBuilder(path)
            .method("PATCH", RequestBody.create(parse(MediaType.APPLICATION_JSON), data))
            .build();
    log.debug("Making PATCH request to {}", request.url().toString());
    return call(request);
  }