Skip to content

Commit 2b50d4f

Browse files
committed
fixed wrong format for notes
1 parent f59f3a1 commit 2b50d4f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

learn-pr/wwl-data-ai/implement-azure-cosmos-db-sql-api-point-operations/includes/2-understand-point-operations.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ class Product:
153153
}
154154
```
155155

156-
> 💡 **Tip**: If you are working with existing Python classes that cannot be modified, consider using helper methods like `to_dict()` to convert objects into the format expected by Azure Cosmos DB for NoSQL. This allows you to reuse existing types while avoiding technical debt.
156+
> [!NOTE]
157+
> If you are working with existing Python classes that cannot be modified, consider using helper methods like `to_dict()` to convert objects into the format expected by Azure Cosmos DB for NoSQL. This allows you to reuse existing types while avoiding technical debt.
157158
158159
With these foundational modeling techniques, you can ensure that your Python application effectively interacts with Azure Cosmos DB for NoSQL.
159160

@@ -247,7 +248,8 @@ class Product {
247248
}
248249
```
249250

250-
> 💡 **Tip**: If you are working with existing JavaScript classes that cannot be modified, consider using a method like `toJSON()` to convert objects into the format expected by Azure Cosmos DB for NoSQL. This allows you to reuse existing types while avoiding technical debt.
251+
> [!NOTE]
252+
> If you are working with existing JavaScript classes that cannot be modified, consider using a method like `toJSON()` to convert objects into the format expected by Azure Cosmos DB for NoSQL. This allows you to reuse existing types while avoiding technical debt.
251253
252254
With these foundational modeling techniques, you can ensure that your JavaScript application effectively interacts with Azure Cosmos DB for NoSQL.
253255

0 commit comments

Comments
 (0)