Skip to content

Commit

Permalink
Update and rename inverse_trigonometric_values.js to InverseTrigonome…
Browse files Browse the repository at this point in the history
…tricValues.js
  • Loading branch information
Sreevidya181 authored Oct 3, 2023
1 parent 3933c75 commit 014ef3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @param {number} numValue The converted value
* @param {String} stringValue Choose from sin, cos, or tan
*/
function getInverseTrigValue(numValue, stringValue) {
function getInverseTrigValues(numValue, stringValue) {
let num = numValue;
let strValue = stringValue;
let output = 0;
Expand All @@ -28,4 +28,4 @@
return output;
}

module.exports = { getInverseTrigValue};
module.exports = { getInverseTrigValues};

0 comments on commit 014ef3f

Please sign in to comment.