From e90b1e5bbedde23b5d84c78355fb3dfb32ca7343 Mon Sep 17 00:00:00 2001 From: Agapanthus Date: Thu, 31 May 2018 17:35:52 +0200 Subject: [PATCH] (Hopefully) removed BOM --- types/codemirror/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/codemirror/index.d.ts b/types/codemirror/index.d.ts index 1ad66db78b..92424e9556 100644 --- a/types/codemirror/index.d.ts +++ b/types/codemirror/index.d.ts @@ -322,8 +322,8 @@ declare namespace CodeMirror { getTokenAt(pos: CodeMirror.Position, precise?: boolean): Token; /** This is a (much) cheaper version of getTokenAt useful for when you just need the type of the token at a given position, - and no other information. Will return null for unstyled tokens, and a string, - potentially containing multiple space-separated style names, otherwise. */ + and no other information. Will return null for unstyled tokens, and a string, potentially containing multiple + space-separated style names, otherwise. */ getTokenTypeAt(pos: CodeMirror.Position): string; /** This is similar to getTokenAt, but collects all tokens for a given line into an array. */