Skip to content

Commit 5ad82b4

Browse files
committed
fix: improve prompt clarity and fluency
1 parent 0ec57bd commit 5ad82b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xcode/App-Mac/Functions.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ func getSaveLocationURL() -> URL {
1010
func setSaveLocationURL(url: URL) -> Bool {
1111
guard FileManager.default.isReadableFile(atPath: url.path) else {
1212
let alert = NSAlert()
13-
alert.messageText = "Can not read to path. Choose a different path."
13+
alert.messageText = "Cannot read the specified path; please choose a different one."
1414
alert.runModal()
1515
return false
1616
}
1717
guard FileManager.default.isWritableFile(atPath: url.path) else {
1818
let alert = NSAlert()
19-
alert.messageText = "Can not write to path. Choose a different path."
19+
alert.messageText = "Cannot write to the specified path; please choose a different one."
2020
alert.runModal()
2121
return false
2222
}

0 commit comments

Comments
 (0)