Skip to content

Commit 36b2094

Browse files
committed
Fix typo
1 parent b586c51 commit 36b2094

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

dist/main/atom/occurrence/controller.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main/atom/occurrence/controller.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main/atom/occurrence/controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class OccurenceController {
1616
let changeDelay: number
1717
let shouldHighlight: boolean = false
1818
this.disposables.add(
19-
atom.config.observe("atom-typescript.ocurrenceHighlightDebounceTimeout", (val) => {
19+
atom.config.observe("atom-typescript.occurrenceHighlightDebounceTimeout", (val) => {
2020
debouncedUpdate = debounce(() => {
2121
handlePromise(this.update())
2222
}, val)

lib/typings/atom-config.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ declare module "atom" {
1313
"atom-typescript.disableAtomIdeDefinitions": boolean
1414
"atom-typescript.buildStatusTimeout": number
1515
"atom-typescript.getErrDebounceTimeout": number
16-
"atom-typescript.ocurrenceHighlightDebounceTimeout": number
16+
"atom-typescript.occurrenceHighlightDebounceTimeout": number
1717
"atom-typescript.showSemanticView": boolean
1818
"atom-typescript.tooltipDelay": number
1919
"atom-typescript.tooltipPosition": "top" | "bottom"
@@ -44,7 +44,7 @@ declare module "atom" {
4444
disableAtomIdeDefinitions: boolean
4545
buildStatusTimeout: number
4646
getErrDebounceTimeout: number
47-
ocurrenceHighlightDebounceTimeout: number
47+
occurrenceHighlightDebounceTimeout: number
4848
showSemanticView: boolean
4949
tooltipDelay: number
5050
tooltipPosition: "top" | "bottom"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@
103103
"default": "150",
104104
"order": 65
105105
},
106-
"ocurrenceHighlightDebounceTimeout": {
107-
"title": "Ocurrence Highlight Debounce Timeout",
106+
"occurrenceHighlightDebounceTimeout": {
107+
"title": "Occurrence Highlight Debounce Timeout",
108108
"description": "How long to wait before showing ocurrence highlights, in ms; low values may cause slowdowns on large projects",
109109
"type": "number",
110110
"default": "300",

0 commit comments

Comments
 (0)