From 1ec58d589a3dfe76c144b2257dba2205fc9eada1 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Sat, 2 Sep 2023 04:46:04 -0700 Subject: [PATCH] misc: Fix broken code example in bug_report.md Change-Id: I9bc1b42d488a415d2ea165385d83fea3d4ac288d --- .github/ISSUE_TEMPLATE/bug_report.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index c7d10c1724..6f89a7eb33 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -25,9 +25,9 @@ If writing code, or a terminal command, use code blocks. Either an inline code b ```python -int x=2; -int y=3' -print(x+y); +int x=2 +int y=3 +print(x+y) ``` If possible, please include the Python configuration script used and state clearly any parameters passed.