summaryrefslogtreecommitdiff
path: root/tutorial/tutorial.thrift
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@apache.org>2009-03-24 20:01:25 +0000
committerDavid Reiss <dreiss@apache.org>2009-03-24 20:01:25 +0000
commitc51986f43897a64531935653cb4a2462f6cd7e11 (patch)
treeda8728080bf9265c2aa6eb8d72877b384ea94c80 /tutorial/tutorial.thrift
parent473292500dc553e537aad0544f9fbb31d0fbf3d0 (diff)
downloadthrift-c51986f43897a64531935653cb4a2462f6cd7e11.tar.gz
THRIFT-136. s/async/oneway/ in comments
This is an internal-only change. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@757990 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tutorial/tutorial.thrift')
-rw-r--r--tutorial/tutorial.thrift4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorial/tutorial.thrift b/tutorial/tutorial.thrift
index 17c582733..52e1b75bc 100644
--- a/tutorial/tutorial.thrift
+++ b/tutorial/tutorial.thrift
@@ -117,8 +117,8 @@ service Calculator extends shared.SharedService {
i32 calculate(1:i32 logid, 2:Work w) throws (1:InvalidOperation ouch),
/**
- * This method has an async modifier. That means the client only makes
- * a request and does not listen for any response at all. Async methods
+ * This method has a oneway modifier. That means the client only makes
+ * a request and does not listen for any response at all. Oneway methods
* must be void.
*/
async void zip()