From 4cb2e58785c601e6b556dd3ebedbb308dcb50d46 Mon Sep 17 00:00:00 2001 From: xiehan <52160700+Barenboim@users.noreply.github.com> Date: Thu, 1 Apr 2021 01:33:39 +0800 Subject: [PATCH] Update tutorial-10-user_defined_protocol.md --- docs/tutorial-10-user_defined_protocol.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial-10-user_defined_protocol.md b/docs/tutorial-10-user_defined_protocol.md index 84e121e9..f54d318a 100644 --- a/docs/tutorial-10-user_defined_protocol.md +++ b/docs/tutorial-10-user_defined_protocol.md @@ -31,7 +31,7 @@ private: /* You have to implement one of the 'append' functions, and the first one * with arguement 'size_t *size' is recommmended. */ - virtual int append(const void *buf, size_t *size); + virtual int append(const void *buf, size_t *size); virtual int append(const void *buf, size_t size); ...