Skip to content

Commit

Permalink
Fix typo (#3030)
Browse files Browse the repository at this point in the history
Trivial: "You ... is ready" -> "Your ... is ready"

Co-authored-by: Andrii Sherman <andreysherman11@gmail.com>
  • Loading branch information
masto and AndriiSherman authored Nov 7, 2024
1 parent f5393af commit e25e2c2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drizzle-kit/src/cli/commands/introspect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,14 @@ export const introspectPostgres = async (
chalk.green(
'✓',
)
}] You schema file is ready ➜ ${chalk.bold.underline.blue(schemaFile)} 🚀`,
}] Your schema file is ready ➜ ${chalk.bold.underline.blue(schemaFile)} 🚀`,
);
render(
`[${
chalk.green(
'✓',
)
}] You relations file is ready ➜ ${
}] Your relations file is ready ➜ ${
chalk.bold.underline.blue(
relationsFile,
)
Expand Down Expand Up @@ -264,14 +264,14 @@ export const introspectMysql = async (
chalk.green(
'✓',
)
}] You schema file is ready ➜ ${chalk.bold.underline.blue(schemaFile)} 🚀`,
}] Your schema file is ready ➜ ${chalk.bold.underline.blue(schemaFile)} 🚀`,
);
render(
`[${
chalk.green(
'✓',
)
}] You relations file is ready ➜ ${
}] Your relations file is ready ➜ ${
chalk.bold.underline.blue(
relationsFile,
)
Expand Down Expand Up @@ -488,14 +488,14 @@ export const introspectLibSQL = async (
chalk.green(
'✓',
)
}] You schema file is ready ➜ ${chalk.bold.underline.blue(schemaFile)} 🚀`,
}] Your schema file is ready ➜ ${chalk.bold.underline.blue(schemaFile)} 🚀`,
);
render(
`[${
chalk.green(
'✓',
)
}] You relations file is ready ➜ ${
}] Your relations file is ready ➜ ${
chalk.bold.underline.blue(
relationsFile,
)
Expand Down

0 comments on commit e25e2c2

Please sign in to comment.