From 7a4b557f0c18ccad5ca01bcc54a52b05b24d79a9 Mon Sep 17 00:00:00 2001 From: ahao <92586826+ahaostudy@users.noreply.github.com> Date: Sun, 29 Oct 2023 17:03:33 +0800 Subject: [PATCH] chore: Example of updating method comments in Readme(en) --- README_ENG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README_ENG.md b/README_ENG.md index 8ef535e7..d187b410 100644 --- a/README_ENG.md +++ b/README_ENG.md @@ -65,6 +65,8 @@ When initializing the client, use DubboCodec's `WithFileDescriptor` Option, and ```thrift service EchoService { EchoResponse Echo(1: i32 req1, 2: list req2, 3: map req3) (hessian.argsType="int,int[],java.util.HashMap") + // Use the default type mapping + EchoDefaultTypeResponse EchoDefaultType(1: i32 req1, 2: i64 req2, 3: bool req3, 4: string req4) (hessian.argsType=",-,,-") } ```