From 78c59967c4323d3c18a7cc2c0780f5ce232d9f86 Mon Sep 17 00:00:00 2001 From: deanwhitehouseHO <145038210+deanwhitehouseHO@users.noreply.github.com> Date: Thu, 9 Nov 2023 13:49:42 +0000 Subject: [PATCH] Update docs/standards/code-comments.md Co-authored-by: Aaron Russell <128606235+aaronrussellHO@users.noreply.github.com> --- docs/standards/code-comments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standards/code-comments.md b/docs/standards/code-comments.md index 2ae7f67f..845adb5b 100644 --- a/docs/standards/code-comments.md +++ b/docs/standards/code-comments.md @@ -170,7 +170,7 @@ This function takes an integer as input and returns its factorial. The factorial :return: The factorial of the input integer. """ def calculate_factorial(n): - # Factorial calculation logic here + ... ``` #### Negative Example