From 4d4a8e27d06a94227d8a8b7ca69227fc0d3e504e Mon Sep 17 00:00:00 2001
From: Bob Flynn <bob.flynn@exactagss.com>
Date: Tue, 27 Feb 2024 15:20:32 +0000
Subject: [PATCH] Update TR-0073-Developer_Guide_Deploying_Semantics.md

---
 TR-0073-Developer_Guide_Deploying_Semantics.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/TR-0073-Developer_Guide_Deploying_Semantics.md b/TR-0073-Developer_Guide_Deploying_Semantics.md
index 884e1a1..de2d3df 100644
--- a/TR-0073-Developer_Guide_Deploying_Semantics.md
+++ b/TR-0073-Developer_Guide_Deploying_Semantics.md
@@ -196,17 +196,17 @@ Only the messages highlighted in light blue are described here as the rest of th
 - Create Information Model.  The IPE creates all the resources needed to for the clothes washing machine that it knows how to model a priori. This IPE is developed with awareness of the clothes washing machine interface and the model that it is creating in the oneM2M CSE. 
 - A &lt;container> resource is created for the Status information of the clothes washing machine. The IPE creates &lt;contentInstance> resources that have the following content when there are any changes in the status of the clothes washing machine:
 
-```
+``` json
 {
-"WashingMachineStatus ": "WASHING", // Or "STOPPED", "ERROR"
+"WashingMachineStatus ": "WASHING" // Or "STOPPED", "ERROR"
 }
 ```
 
 - A &lt;container> resource is created for the command and control of the clothes washing machine. When the client application is setting the state of the device the following payload can be provided in a &lt;contentInstance> resource:
 
-```
+``` json
 {
-"state": "ON", // Or "OFF", "Toggle"
+"state": "ON" // Or "OFF", "Toggle"
 }
 ```
 
-- 
GitLab