Skip to content

Commit 7f8a2cf

Browse files
committed
Fix typo
1 parent 5a04d3a commit 7f8a2cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

vim/function.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export async function bufwinnr(
6464
return await denops.call("bufwinnr", name) as number;
6565
}
6666

67-
export class FuctionHelper {
67+
export class FunctionHelper {
6868
#denops: Denops;
6969

7070
constructor(denops: Denops) {

vim/vim.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Context, Denops, Dispatcher } from "../deps.ts";
22
import { execute } from "./execute.ts";
33
import { autocmd, AutocmdHelper } from "./autocmd.ts";
44
import { VariableHelper } from "./variable.ts";
5-
import { FuctionHelper } from "./function.ts";
5+
import { FunctionHelper } from "./function.ts";
66
import { load } from "./load.ts";
77

88
/**
@@ -24,7 +24,7 @@ export class Vim {
2424
readonly t: VariableHelper;
2525
readonly v: VariableHelper;
2626

27-
readonly fn: FuctionHelper;
27+
readonly fn: FunctionHelper;
2828

2929
constructor(denops: Denops) {
3030
this.#denops = denops;
@@ -33,7 +33,7 @@ export class Vim {
3333
this.w = new VariableHelper(denops, "w");
3434
this.t = new VariableHelper(denops, "t");
3535
this.v = new VariableHelper(denops, "v");
36-
this.fn = new FuctionHelper(denops);
36+
this.fn = new FunctionHelper(denops);
3737
}
3838

3939
/**

0 commit comments

Comments
 (0)