[gnome-calculator/fix-cli-string] gnome-calculator.vala: Add missing parenthesis



commit c9920bcc8ef5860bd9a8f61bc724c5250822e5de
Author: Rafael Fontenelle <rafaelff gnome org>
Date:   Mon Dec 30 16:47:59 2019 -0300

    gnome-calculator.vala: Add missing parenthesis

 src/gnome-calculator.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gnome-calculator.vala b/src/gnome-calculator.vala
index 0f9d6002..15fd90d5 100644
--- a/src/gnome-calculator.vala
+++ b/src/gnome-calculator.vala
@@ -21,7 +21,7 @@ public class Calculator : Gtk.Application
     private static string mode_string = null;
 
     private const OptionEntry[] option_entries = {
-        { "mode", 'm', 0, OptionArg.STRING, ref mode_string, N_("Start in given mode (%s)".format("basic, 
advanced, financial, programming, keyboard"), "mode" },
+        { "mode", 'm', 0, OptionArg.STRING, ref mode_string, N_("Start in given mode (%s)".format("basic, 
advanced, financial, programming, keyboard")), "mode" },
         { "solve", 's', 0, OptionArg.STRING, null, N_("Solve given equation"), "equation" },
         { "equation", 'e', 0, OptionArg.STRING, ref equation_string, N_("Start with given equation"), 
"equation"},
         { "version", 'v', 0, OptionArg.NONE, null, N_("Show release version"), null },


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]