📝 Stronger wording, and change event to action

This commit is contained in:
Thomas Johansen
2015-05-23 00:03:01 +02:00
parent dfd365cf51
commit b4ff2e15d1

View File

@@ -18,10 +18,10 @@ SequenceCount = 0
# command event listeners globally on `atom.commands` and constrain them to
# specific kinds of elements with CSS selectors.
#
# Command names must follow the `namespace:event` pattern, where both parts can
# be further split into words by hyphens. Typically `namespace` will be the
# name of your package, and `event` describes the behavior of your command.
# E.g. `awesome-package:toggle`.
# Command names must follow the `namespace:action` pattern, where `namespace`
# will typically be the name of your package, and `action` describes the
# behavior of your command. If either part consists of multiple words, these
# must be separated by hyphens. E.g. `awesome-package:turn-it-up-to-eleven`.
#
# As the event bubbles upward through the DOM, all registered event listeners
# with matching selectors are invoked in order of specificity. In the event of a