From 50e3dcbef444d184998dd26cb42096d9eb3d040a Mon Sep 17 00:00:00 2001 From: Stefan Herzog Date: Thu, 13 Jun 2024 15:29:29 +0200 Subject: [PATCH] Correct code part (#2216) --- docs/dev_101_services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev_101_services.md b/docs/dev_101_services.md index 037f0ae4..1cae85a9 100644 --- a/docs/dev_101_services.md +++ b/docs/dev_101_services.md @@ -55,7 +55,7 @@ Open the frontend and in the sidebar, click the first icon in the developer tool Pressing "Call Service" will now call your service without any parameters. This will cause your service to create a state with the default name 'World'. If you want to specify the name, you have to specify a parameter by providing it through Service Data. In YAML mode, add the following and press "Call Service again". ```yaml -service: helloworld_service.hello +service: hello_service.hello data: name: Planet ```