mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-23 15:19:33 +00:00
docs: add prereq commas (#25626)
This commit is contained in:
parent
b71ae52e65
commit
f4b3c90886
@ -8,7 +8,10 @@ export default function Compatibility({ packagesAndVersions }) {
|
|||||||
The code in this guide requires{" "}
|
The code in this guide requires{" "}
|
||||||
{packagesAndVersions.map(([pkg, version], i) => {
|
{packagesAndVersions.map(([pkg, version], i) => {
|
||||||
return (
|
return (
|
||||||
<code key={`compatiblity-map${pkg}>=${version}-${i}`}>{`${pkg}>=${version}`}</code>
|
<span key={`compatibility-map${pkg}>=${version}-${i}`}>
|
||||||
|
<code>{`${pkg}>=${version}`}</code>
|
||||||
|
{i < packagesAndVersions.length - 1 && ", "}
|
||||||
|
</span>
|
||||||
);
|
);
|
||||||
})}.
|
})}.
|
||||||
Please ensure you have the correct packages installed.
|
Please ensure you have the correct packages installed.
|
||||||
|
Loading…
Reference in New Issue
Block a user