Fixing faux possessive 'it is' -> 'its'.

This commit is contained in:
Ramón Cahenzli 2015-06-01 13:58:02 +02:00
parent bae891091e
commit 6788312d5c
2 changed files with 7 additions and 3 deletions

View File

@ -42,6 +42,10 @@
{
"name": "Filipe Silva",
"url": "https://github.com/filipesilva"
},
{
"name": "Ramón Cahenzli",
"url": "https://github.com/psy-q"
}
],
"engines": {

View File

@ -29,7 +29,7 @@ module.exports = class Beautifiers
###
List of beautifier names
To register a beautifier add it's name here
To register a beautifier add its name here
###
beautifierNames : [
'uncrustify'
@ -470,7 +470,7 @@ module.exports = class Beautifiers
title = "Atom Beautify could not find a supported beautifier for this file"
detail = """
Atom Beautify could not determine a supported beautifier to handle this file with grammar \"#{grammar}\" and extension \"#{fileExtension}\". \
If you would like to request support for this file and it's language, please create an issue for Atom Beautify at #{repoBugsUrl}
If you would like to request support for this file and its language, please create an issue for Atom Beautify at #{repoBugsUrl}
"""
atom?.notifications.addWarning(title, {
@ -638,7 +638,7 @@ module.exports = class Beautifiers
userHome = @getUserHome()
# FAKEFILENAME forces `path` to treat as file path and it's parent directory
# FAKEFILENAME forces `path` to treat as file path and its parent directory
# is the userHome. See implementation of findConfig
# and how path.dirname(DIRECTORY) returns the parent directory of DIRECTORY
homeOptions = @getConfig(path.join(userHome, "FAKEFILENAME"), false)