diff --git a/src/main/java/com/github/brenoepics/at4j/util/rest/RestMethod.java b/src/main/java/com/github/brenoepics/at4j/util/rest/RestMethod.java index f94deda..5db135b 100644 --- a/src/main/java/com/github/brenoepics/at4j/util/rest/RestMethod.java +++ b/src/main/java/com/github/brenoepics/at4j/util/rest/RestMethod.java @@ -19,7 +19,7 @@ public enum RestMethod { GET, // The GET method requests a representation of the specified resource. POST, // The POST method is used to submit an entity to the specified resource. PUT, // The PUT method replaces all current representations of the target resource with the - // request payload. + // request payload. DELETE, // The DELETE method deletes the specified resource. PATCH // The PATCH method is used to apply partial modifications to a resource. }