From a288a4e15ff542dc35084ca2cce7d13a5431c2a5 Mon Sep 17 00:00:00 2001 From: Ryo Nakano <26003928+ryonakano@users.noreply.github.com> Date: Wed, 21 Aug 2019 07:36:31 +0900 Subject: [PATCH] Fix 'arg tangent' to 'arc tangent' --- src/App.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vala b/src/App.vala index 38fd87d..a518db4 100644 --- a/src/App.vala +++ b/src/App.vala @@ -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 () {