Change double-spaces after sentence ends to single space. Change pluralization for URL to URLs.

This commit is contained in:
Daniel Jalkut
2020-11-01 18:29:13 -05:00
parent b504c88948
commit d8f9cf59dd
4 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ final class SendToMicroBlogCommand: ExtensionPoint, SendToCommand {
static var title: String = NSLocalizedString("Micro.blog", comment: "Micro.blog")
static var image = AppAssets.extensionPointMicroblog
static var description: NSAttributedString = {
let attrString = SendToMicroBlogCommand.makeAttrString("This extension enables share menu functionality to send selected article text to Micro.blog. You need the Micro.blog application for this to work.")
let attrString = SendToMicroBlogCommand.makeAttrString("This extension enables share menu functionality to send selected article text to Micro.blog. You need the Micro.blog application for this to work.")
let range = NSRange(location: 81, length: 10)
attrString.beginEditing()
attrString.addAttribute(NSAttributedString.Key.link, value: "https://micro.blog", range: range)