Skip to content

Commit a06dbf2

Browse files
authored
fix: docs typo (langchain-ai#2143)
1 parent 010b699 commit a06dbf2

File tree

1 file changed

+2
-2
lines changed
  • docs/snippets/modules/model_io/prompts/prompt_templates

1 file changed

+2
-2
lines changed

docs/snippets/modules/model_io/prompts/prompt_templates/partial.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ const prompt = new PromptTemplate({
1010
inputVariables: ["foo", "bar"]
1111
});
1212

13-
const paritalPrompt = await prompt.partial({
13+
const partialPrompt = await prompt.partial({
1414
foo: "foo",
1515
});
1616

17-
const formattedPrompt = await paritalPrompt.format({
17+
const formattedPrompt = await partialPrompt.format({
1818
bar: "baz",
1919
});
2020

0 commit comments

Comments
 (0)