From c6e33bddb9dad3fc7979df84bc55061a2f4100a9 Mon Sep 17 00:00:00 2001 From: zhaohanyan Date: Fri, 29 Nov 2024 18:44:04 -0500 Subject: [PATCH] Update 02conventions.ipynb.py Co-authored-by: Saransh Chopra --- ch05construction/02conventions.ipynb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch05construction/02conventions.ipynb.py b/ch05construction/02conventions.ipynb.py index b6439058..726e0dad 100644 --- a/ch05construction/02conventions.ipynb.py +++ b/ch05construction/02conventions.ipynb.py @@ -124,7 +124,7 @@ def add_to_reaction(a_name, # ## Naming Conventions # %% [markdown] -# [Camel case](https://en.wikipedia.org/wiki/Camel_case) is used for class names in the following example, while function and variable names follow snake_case (underscore_separation). This convention is widely used in the Python community, as stated in [PEP 8](https://pep8.org/). +# [UpperCamel case](https://en.wikipedia.org/wiki/Camel_case) is used for class names in the following example, while function and variable names follow snake_case (underscore_separation). This convention is widely used in the Python community, as stated in [PEP 8](https://pep8.org/). # %% class ClassName: