From 7dd6587b949b397825fa6ba7140736d0a7adb83a Mon Sep 17 00:00:00 2001 From: Sergey Konstantinov Date: Sun, 16 Jan 2022 23:28:53 +0300 Subject: [PATCH] style fix --- src/ru/clean-copy/02-Раздел I. Проектирование API/06.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ru/clean-copy/02-Раздел I. Проектирование API/06.md b/src/ru/clean-copy/02-Раздел I. Проектирование API/06.md index a7774a3..7799fe8 100644 --- a/src/ru/clean-copy/02-Раздел I. Проектирование API/06.md +++ b/src/ru/clean-copy/02-Раздел I. Проектирование API/06.md @@ -20,7 +20,7 @@ POST /v1/offers/search // Данные о заведении "place": { "name", "location" }, // Данные о кофе-машине - "coffee-machine": { "id", "brand", "type" }, + "coffee_machine": { "id", "brand", "type" }, // Как добраться "route": { "distance", "duration", "location_tip" }, // Предложения напитков @@ -90,7 +90,7 @@ POST /v1/orders/{id}/cancel // соответствующей указанному рецепту // на указанной кофе-машине POST /v1/program-matcher -{ "recipe", "coffee-machine" } +{ "recipe", "coffee_machine" } → { "program_id" } ```