From 98dde7bf51721fbf36a38b5a9e7580820734a208 Mon Sep 17 00:00:00 2001 From: Ivor Berry Date: Thu, 11 Jan 2024 15:39:20 -0500 Subject: [PATCH] format update for code block --- Instructions/Exercises/04-code-generation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Exercises/04-code-generation.md b/Instructions/Exercises/04-code-generation.md index 54c5c909..cb68f755 100644 --- a/Instructions/Exercises/04-code-generation.md +++ b/Instructions/Exercises/04-code-generation.md @@ -71,7 +71,7 @@ Before using in your app, examine how Azure OpenAI can generate and explain code def multiply(a, b): result = 0 negative = False - + if a < 0 and b > 0: a = -a negative = True