about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2020-02-01 13:41:11 +0100
committerbjorn3 <bjorn3@users.noreply.github.com>2020-02-01 13:41:11 +0100
commitc84897bfb76b833122ee418d26e9bc53b4245ce8 (patch)
treec7819a0f8507eb5fef4fce54a8cd412ea57fc01d /editors/code/src
parent5c39311f9639543fe1dd2a67ec5aff757bb830eb (diff)
downloadrust-c84897bfb76b833122ee418d26e9bc53b4245ce8.tar.gz
rust-c84897bfb76b833122ee418d26e9bc53b4245ce8.zip
Tsfmt
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/color_theme.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/color_theme.ts b/editors/code/src/color_theme.ts
index e4d20490b1f..d816f617d27 100644
--- a/editors/code/src/color_theme.ts
+++ b/editors/code/src/color_theme.ts
@@ -31,8 +31,8 @@ export class ColorTheme {
             const scopes = typeof rule.scope === 'undefined'
                 ? []
                 : typeof rule.scope === 'string'
-                ? [rule.scope]
-                : rule.scope;
+                    ? [rule.scope]
+                    : rule.scope;
             for (const scope of scopes) {
                 res.rules.set(scope, rule.settings);
             }