diff --git a/src/LiveDevelopment/Inspector/Inspector.json b/src/LiveDevelopment/Inspector/Inspector.json
index 0e630b0f7f5..75cd5d9300c 100644
--- a/src/LiveDevelopment/Inspector/Inspector.json
+++ b/src/LiveDevelopment/Inspector/Inspector.json
@@ -3244,7 +3244,7 @@
{ "name": "script", "optional": true, "type": "string", "description": "Regular expression defining the scripts to ignore while stepping." }
],
"hidden": true,
- "description": "Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful."
+ "description": "Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful."
}
],
"events": [
diff --git a/src/LiveDevelopment/Inspector/inspector.html b/src/LiveDevelopment/Inspector/inspector.html
index 8a4cebfc21e..ef422391d31 100644
--- a/src/LiveDevelopment/Inspector/inspector.html
+++ b/src/LiveDevelopment/Inspector/inspector.html
@@ -386,7 +386,7 @@
Debugger.setVariableValue: Changes value of variable in a callframe or a closure. Either callframe or function must be specified. Object-based scopes are not supported and must be mutated manually.
Debugger.getStepInPositions: Lists all positions where step-in is possible for a current statement in a specified call frame
Debugger.getBacktrace: Returns call stack including variables changed since VM was paused. VM must be paused.
-Debugger.skipStackFrames: Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
+Debugger.skipStackFrames: Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
Event
@@ -3883,7 +3883,7 @@ Debugger
- Debugger.setVariableValue: Changes value of variable in a callframe or a closure. Either callframe or function must be specified. Object-based scopes are not supported and must be mutated manually.
- Debugger.getStepInPositions: Lists all positions where step-in is possible for a current statement in a specified call frame
- Debugger.getBacktrace: Returns call stack including variables changed since VM was paused. VM must be paused.
-- Debugger.skipStackFrames: Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
+- Debugger.skipStackFrames: Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
Event
@@ -4453,7 +4453,7 @@ Code Example:
Debugger.skipStackFrames Command
-
Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
+
Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
- script (optional)
- String Regular expression defining the scripts to ignore while stepping.
diff --git a/src/extensions/default/PrefsCodeHints/main.js b/src/extensions/default/PrefsCodeHints/main.js
index 6461039b00f..d2e739332fc 100644
--- a/src/extensions/default/PrefsCodeHints/main.js
+++ b/src/extensions/default/PrefsCodeHints/main.js
@@ -197,7 +197,7 @@ define(function (require, exports, module) {
this.ctxInfo = JSONUtils.getContextInfo(this.editor, this.editor.getCursorPos(), true);
if (this.ctxInfo && this.ctxInfo.tokenType) {
- // Disallow hints for block-listed keys.
+ // Disallow hints for blocklisted keys.
if (this.ctxInfo.tokenType === JSONUtils.TOKEN_KEY &&
parentKeyBlocklist.indexOf(this.ctxInfo.parentKeyName) !== -1) {
return false;
diff --git a/src/extensions/default/PrefsCodeHints/unittests.js b/src/extensions/default/PrefsCodeHints/unittests.js
index 5832b70491f..800a813dba9 100644
--- a/src/extensions/default/PrefsCodeHints/unittests.js
+++ b/src/extensions/default/PrefsCodeHints/unittests.js
@@ -247,7 +247,7 @@ define(function (require, exports, module) {
verifyHints(hintList, "spaceUnits");
});
- it("should NOT hint for block-listed parent keys", function () {
+ it("should NOT hint for blocklisted parent keys", function () {
// Between " and txt"
testEditor.setCursorPos({line: 4, ch: 9});
expectNoHints(PrefsCodeHints.hintProvider);