Skip to content

Commit

Permalink
Fix 'arg tangent' to 'arc tangent'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed Aug 20, 2019
1 parent c9965bb commit a288a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vala
Expand Up @@ -39,7 +39,7 @@ public class Spreadsheet.App : Gtk.Application {
functions.add (new Function ("tan", Functions.tan, _("Gives the tangent of a number (in radians)")));
functions.add (new Function ("arccos", Functions.arccos, _("Gives the arc cosine of a number")));
functions.add (new Function ("arcsin", Functions.arcsin, _("Gives the arc sine of a number")));
functions.add (new Function ("arctan", Functions.arctan, _("Gives the arg tangent of a number")));
functions.add (new Function ("arctan", Functions.arctan, _("Gives the arc tangent of a number")));
}

public override void activate () {
Expand Down

0 comments on commit a288a4e

Please sign in to comment.