docs: fix a couple of small indentation errors in the strings (#7951)

Fixed a few indentations I came across in the docs @baskaryan
This commit is contained in:
Jithin James
2023-07-20 19:04:01 +05:30
committed by GitHub
parent 73901ef132
commit 493cbc9410
2 changed files with 24 additions and 29 deletions

View File

@@ -4,7 +4,7 @@ Here's the simplest example:
from langchain import PromptTemplate
template = """/
template = """\
You are a naming consultant for new companies.
What is a good name for a company that makes {product}?
"""
@@ -16,8 +16,8 @@ prompt.format(product="colorful socks")
<CodeOutputBlock lang="python">
```
You are a naming consultant for new companies.
What is a good name for a company that makes colorful socks?
You are a naming consultant for new companies.
What is a good name for a company that makes colorful socks?
```
</CodeOutputBlock>