Skip to content

Commit

Permalink
fix: Fixed import.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShogunPanda committed Mar 13, 2023
1 parent 357a09a commit 2f65899
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/src/typo-tolerant-search.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import cronometro from "cronometro";
import { isMainThread } from "worker_threads";
import { create, search, insertMultiple } from "../../dist/index.js";
import { create, insertMultiple, search } from "../../dist/index.js";
import { createTokenizer } from "../../dist/internals.js";
import { formattedEvents } from "./utils/dataset.js";

Expand Down
2 changes: 1 addition & 1 deletion src/methods/update.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { runMultipleHook, runSingleHook } from "src/components/hooks.js";
import { runMultipleHook, runSingleHook } from "../components/hooks.js";
import { Document, Lyra, OpaqueDocumentStore, OpaqueIndex, Schema } from "../types.js";
import { insert, insertMultiple } from "./insert.js";
import { remove, removeMultiple } from "./remove.js";
Expand Down

0 comments on commit 2f65899

Please sign in to comment.