From de3703d1ea6a9892b1f6f54638bf8aec1e66bebc Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 23 Oct 2014 14:08:09 -0700 Subject: [PATCH] :memo: Mark CommandRegistry and atom.commands public --- src/atom.coffee | 2 +- src/command-registry.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/atom.coffee b/src/atom.coffee index 5924827d4..31580d2c9 100644 --- a/src/atom.coffee +++ b/src/atom.coffee @@ -107,7 +107,7 @@ class Atom extends Model Section: Properties ### - # Experimental: A {CommandRegistry} instance + # Public: A {CommandRegistry} instance commands: null # Public: A {Config} instance diff --git a/src/command-registry.coffee b/src/command-registry.coffee index fadca2a8e..4dc964f72 100644 --- a/src/command-registry.coffee +++ b/src/command-registry.coffee @@ -8,7 +8,7 @@ SpecificityCache = {} module.exports = -# Experimental: Associates listener functions with commands in a +# Public: Associates listener functions with commands in a # context-sensitive way using CSS selectors. You can access a global instance of # this class via `atom.commands`, and commands registered there will be # presented in the command palette.