From 9482f41b005a5f242301ff1f28252093b389fd52 Mon Sep 17 00:00:00 2001 From: Kazuhito Suda Date: Thu, 14 Dec 2023 19:32:43 +0900 Subject: [PATCH] (JP) Cookbook: The section "Adding a REST service" is updated --- doc/manuals.jp/devel/cookbook.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/manuals.jp/devel/cookbook.md b/doc/manuals.jp/devel/cookbook.md index 5da690df72..f25aa69f26 100644 --- a/doc/manuals.jp/devel/cookbook.md +++ b/doc/manuals.jp/devel/cookbook.md @@ -122,8 +122,7 @@ typedef struct RestService { RequestType request; // The type of the request int components; // Number of components in the URL path - std::string compV[10]; // Vector of URL path components. E.g. { "v2", "entities" } - std::string payloadWord; // No longer used, should be removed ... ? + std::string compV[10]; // Vector of URL path components. E.g. { "v2", "entities" } RestTreat treat; // service function pointer } RestService; ```