Moar 📝

This commit is contained in:
Ben Ogle 2014-09-25 17:11:24 -07:00
parent 1408d69641
commit 11fad1bd12
2 changed files with 5 additions and 5 deletions

View File

@ -338,7 +338,7 @@ module.exports =
# ...
```
To specify the configuration, we use [json schema][json-schema] which allows you
To define the configuration, we use [json schema][json-schema] which allows you
to indicate the type your value should be, its default, etc.
See the [Config API Docs](https://atom.io/docs/api/latest/Config) for more

View File

@ -59,7 +59,7 @@ pathWatcher = require 'pathwatcher'
#
# ## Defining settings for your package
#
# Specify a schema under a `config` key in your package main.
# Define a schema under a `config` key in your package main.
#
# ```coffee
# module.exports =
@ -79,7 +79,7 @@ pathWatcher = require 'pathwatcher'
#
# ## Config Schemas
#
# We use [json schema](json-schema.org) which allows you to specify your value, its
# We use [json schema](json-schema.org) which allows you to define your value's
# default, the type it should be, etc. A simple example:
#
# ```coffee
@ -260,8 +260,8 @@ pathWatcher = require 'pathwatcher'
# default: 4
# ```
#
# __Note__: You should strive to be so clear in your naming of the config
# setting that you do not need to specify a title or description!
# __Note__: You should strive to be so clear in your naming of the setting that
# you do not need to specify a title or description!
#
# ## Best practices
#