From 00bea438401d01d5383872bff9bc6ec4c803ebad Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 15 Nov 2017 17:15:50 -0800 Subject: [PATCH] :memo: Fix comment on GrammarRegistry class --- src/grammar-registry.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/grammar-registry.js b/src/grammar-registry.js index 7d137bebd..7b1d4f4ee 100644 --- a/src/grammar-registry.js +++ b/src/grammar-registry.js @@ -10,12 +10,9 @@ const {Point, Range} = require('text-buffer') const GRAMMAR_SELECTION_RANGE = Range(Point.ZERO, Point(10, 0)).freeze() const PATH_SPLIT_REGEX = new RegExp('[/.]') -// Extended: Syntax class holding the grammars used for tokenizing. +// Extended: This class holds the grammars used for tokenizing. // // An instance of this class is always available as the `atom.grammars` global. -// -// The Syntax class also contains properties for things such as the -// language-specific comment regexes. See {::getProperty} for more details. module.exports = class GrammarRegistry extends FirstMate.GrammarRegistry { constructor ({config} = {}) {