Skip to content

Commit 1cd600c

Browse files
committed
Update README.md.
1 parent 18913d3 commit 1cd600c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This guide introduces the Kilo framework and provides an overview of its key fea
1313
Kilo is distributed via Maven Central:
1414

1515
* [org.httprpc:kilo-client](https://central.sonatype.com/artifact/org.httprpc/kilo-client/versions) - includes support for consuming web services, interacting with relational databases, and working with common file formats (Java 21 or later required)
16-
* [org.httprpc:kilo-server](https://central.sonatype.com/artifact/org.httprpc/kilo-server/versions) - depends on client; includes support for creating web services (Jakarta Servlet specification 6.1 or later required)
16+
* [org.httprpc:kilo-server](https://central.sonatype.com/artifact/org.httprpc/kilo-server/versions) - depends on client; includes support for creating web services (Jakarta Servlet 6.1 or later required)
1717

1818
# Kilo Classes
1919
Classes provided by the Kilo framework include:
@@ -115,7 +115,7 @@ The following multi-value types are also supported:
115115
* `java.util.Set`
116116
* array/varargs
117117

118-
Additionally, `java.util.Map`, bean, record, and `org.w3c.dom.Document` types are supported for [body content](#body-content). Arguments of type `jakarta.servlet.http.Part` may be used with `POST` requests submitted as [multi-part form data](https://jakarta.ee/specifications/servlet/6.1/jakarta-servlet-spec-6.1#_MultipartConfig).
118+
Additionally, `java.util.Map`, bean, record, and `org.w3c.dom.Document` types are supported for [body content](#body-content). Arguments of type `jakarta.servlet.http.Part` may be used with `POST` handler methods annotated with `FormData`.
119119

120120
Unspecified values are automatically converted to `0`, `false`, or the null character for primitive types. `Date` values are decoded from a long value representing epoch time in milliseconds. Other values are parsed from their string representations.
121121

@@ -340,7 +340,7 @@ public enum Size implements Numeric {
340340
}
341341
```
342342

343-
The `FormData` annotation can be used to indicate that a method accepts [form data](https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4). Deprecated elements will be identified as such in the output.
343+
Deprecated elements will be identified as such in the output.
344344

345345
A JSON version of the generated documentation can be obtained by specifying an "Accept" type of "application/json" in the request headers. The response can be used to process an API definition programatically; for example, to generate client-side stub code.
346346

0 commit comments

Comments
 (0)