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