summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Geyer <jensg@apache.org>2015-09-03 20:53:44 +0200
committerJens Geyer <jensg@apache.org>2015-09-03 20:53:44 +0200
commit1f1c206b08323111d7e9dd06321846339ca8f5b0 (patch)
treea9f6fffc5c817615f8170eb0a81014eb5f83dc89
parentb92f636f7b3800b2a068e108608e95ea3e64d2ce (diff)
downloadthrift-1f1c206b08323111d7e9dd06321846339ca8f5b0.tar.gz
THRIFT-3310 lib/erl/README.md has incorrect formatting
Client: Erlang Patch: Chris Snow <chsnow123@gmail.com> This closes #593
-rw-r--r--lib/erl/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/erl/README.md b/lib/erl/README.md
index a61a53c7e..433d05c34 100644
--- a/lib/erl/README.md
+++ b/lib/erl/README.md
@@ -31,6 +31,7 @@ old naming conventions (for backwards compatibility) use the compiler option
Example session using thrift_client:
+```erl
1> {ok, C0} = thrift_client_util:new("localhost", 9090, thrift_test_thrift, []), ok.
ok
2> {C1, R1} = thrift_client:call(C0, testVoid, []), R1.
@@ -47,3 +48,4 @@ ok
{ok,ok}
8> {C7, R7} = (catch thrift_client:call(C6, testException, ["Xception"])), R7.
{exception,{xception,1001,<<"Xception">>}}
+```