Skip to content

Commit 86453d5

Browse files
committed
Update README.md.
1 parent 1244ce5 commit 86453d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ HTTP-RPC provides the following classes for creating and consuming REST services
6565
These classes are explained in more detail in the following sections.
6666

6767
## WebService
68-
`WebService` is an abstract base class for REST services. It extends the similarly abstract `HttpServlet` class provided by the servlet API.
68+
`WebService` is an abstract base class for web services. It extends the similarly abstract `HttpServlet` class provided by the servlet API.
6969

7070
Service operations are defined by adding public methods to a concrete service implementation. Methods are invoked by submitting an HTTP request for a path associated with a servlet instance. Arguments are provided either via the query string or in the request body, like an HTML form. `WebService` converts the request parameters to the expected argument types, invokes the method, and writes the return value to the output stream as [JSON](http://json.org).
7171

httprpc/src/main/java/org/httprpc/WebService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
import org.httprpc.io.JSONEncoder;
5353

5454
/**
55-
* Abstract base class for REST-based web services.
55+
* Abstract base class for web services.
5656
*/
5757
public abstract class WebService extends HttpServlet {
5858
private static final long serialVersionUID = 0;

0 commit comments

Comments
 (0)