From 1e3fc0655bace1b6c21a762cc105c51741bd63cb Mon Sep 17 00:00:00 2001 From: Esa Juhani Ruoho Date: Fri, 11 Jan 2019 19:52:09 +0200 Subject: [PATCH] correct capitalisation `Please Provide the Value` -> `Please provide the value` Former-commit-id: 1e13e1eff273c74fb8caf3690321d636d2939fc0 [formerly 82a30b6ba15f4e760eaef323b813d0de4801e1e3] Former-commit-id: 4f1429ed9c6ab540473f54b3f9282760a7ac110f Former-commit-id: 18c3e7958ec6071dbcac5d1e92b97ffa7f0c841c --- src/mac/cocoa_utils.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mac/cocoa_utils.mm b/src/mac/cocoa_utils.mm index 642da08c37d..fe9940db53f 100644 --- a/src/mac/cocoa_utils.mm +++ b/src/mac/cocoa_utils.mm @@ -15,7 +15,7 @@ [msg addButtonWithTitle:@"OK"]; [msg addButtonWithTitle:@"Cancel"]; - [msg setMessageText:@"Please Provide the Value"]; + [msg setMessageText:@"Please provide the value"]; NSTextField *txt = [[NSTextField alloc] init]; [txt setFrame: NSMakeRect(0, 0, 200, 24 )];