Skip to content

Commit 32c7880

Browse files
committed
Fix typo
1 parent 29239bf commit 32c7880

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/search/lib/commands/SEARCH_NOCONTENT.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ export function transformArguments(
1717
);
1818
}
1919

20-
export interface SearchNonContentReply {
20+
export interface SearchNoContentReply {
2121
total: number;
2222
documents: Array<string>;
2323
};
2424

25-
export function transformReply(reply: SearchRawReply): SearchNonContentReply {
25+
export function transformReply(reply: SearchRawReply): SearchNoContentReply {
2626
return {
2727
total: reply[0],
2828
documents: reply.slice(1)

0 commit comments

Comments
 (0)