diff --git a/samuelogboye/README.md b/samuelogboye/README.md index 864be2d..591db41 100644 --- a/samuelogboye/README.md +++ b/samuelogboye/README.md @@ -1,5 +1,5 @@ # Calculator -This is a simple calculator program written in C. It allows users to perform basic and advanced mathematical operations. Users can choose between addition, subtraction, multiplication, division, exponentiation, and advanced functionalities such as square root, logarithm, and trigonometric operations. +This is a simple calculator program written in C language. It allows users to perform basic and advanced mathematical operations. Users can choose between addition, subtraction, multiplication, division, exponentiation, and advanced functionalities such as square root, logarithm, and trigonometric operations. ## Getting Started To compile and run the calculator program, follow these steps: diff --git a/samuelogboye/calc.h b/samuelogboye/calc.h index 12cf9c4..10ea182 100644 --- a/samuelogboye/calc.h +++ b/samuelogboye/calc.h @@ -9,7 +9,7 @@ /** * OperandChoice - Structure representing the choice of operands * - * @operand: The selected operand + * @operand: The selected operands * @name: The name associated with the choice * @first_number: The first number for the operation */ diff --git a/samuelogboye/calculator.c b/samuelogboye/calculator.c index b1df5da..8553a24 100644 --- a/samuelogboye/calculator.c +++ b/samuelogboye/calculator.c @@ -2,7 +2,7 @@ /** * BasicOp - a function that performs basic operations - * @first_num: the first number to work with + * @first_num: first number to work with * @second_num: the second number to work with * @operand: operand to perform the operation * Return: the final result