Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mantagen committed Nov 21, 2024
1 parent 014d6d7 commit a3d1d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aila/src/core/chat/AilaChat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class AilaChat implements AilaChatService {
this._chunks.push(value);
}

public appendEperimentalPatch(patch: ExperimentalPatchDocument) {
public appendExperimentalPatch(patch: ExperimentalPatchDocument) {
this._experimentalPatches.push(patch);
}

Expand Down Expand Up @@ -387,7 +387,7 @@ export class AilaChat implements AilaChatService {
parsedMessages: this.parsedMessages,
handlePatch: async (patch) => {
await this.enqueue(patch);
this.appendEperimentalPatch(patch);
this.appendExperimentalPatch(patch);
},
});
this.applyEdits();
Expand Down

0 comments on commit a3d1d7f

Please sign in to comment.