From 6e2f2d273c821774f3bee245d1e4279f652e335b Mon Sep 17 00:00:00 2001 From: ecourt93 Date: Tue, 20 May 2025 14:22:35 -0400 Subject: [PATCH] Fixed typos in documentation --- src/pyosDemo/add_number.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pyosDemo/add_number.py b/src/pyosDemo/add_number.py index d4bbd6f..5c3389f 100644 --- a/src/pyosDemo/add_number.py +++ b/src/pyosDemo/add_number.py @@ -11,11 +11,11 @@ def add_num(num_1, num_2): Parameters ---------- num_1 : int - The second numbersss that the functionsz will add. + The second numbers that the functions will add. num_2 : int - The second number that the functioon will add. + The second number that the function will add. Return ------ - The sum of wtwo numffbers + The sum of two numbers """ return num_1 + num_2