Fix Typos in Comments and Documentation (#3987)

* Update markdown-katex.js

* Update PRISMA.md
This commit is contained in:
kilavvy 2025-06-12 22:59:38 +02:00 committed by GitHub
parent 9cbe9e0abe
commit 1752bc261e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ function math_inline(state, silent) {
match += 1; match += 1;
} }
// No closing delimter found. Consume $ and continue. // No closing delimiter found. Consume $ and continue.
if (match === -1) { if (match === -1) {
if (!silent) { if (!silent) {
state.pending += "$"; state.pending += "$";

View File

@ -20,7 +20,7 @@ In the project root's `package.json`, there are several scripts set up to help y
- **prisma:migrate**: Runs the migrations to ensure the database is in sync with the schema. - **prisma:migrate**: Runs the migrations to ensure the database is in sync with the schema.
- **prisma:seed**: Seeds the database with initial data. - **prisma:seed**: Seeds the database with initial data.
- **prisma:setup**: A convenience script that runs `prisma:generate`, `prisma:migrate`, and `prisma:seed` in sequence. - **prisma:setup**: A convenience script that runs `prisma:generate`, `prisma:migrate`, and `prisma:seed` in sequence.
- **sqlite:migrate**: (To be run from the `server` directory) This script is for users transitioning from the old SQLite custom ORM setup to Prisma and will migrate all exisiting data over to Prisma. If you're a new user, your setup will already use Prisma. - **sqlite:migrate**: (To be run from the `server` directory) This script is for users transitioning from the old SQLite custom ORM setup to Prisma and will migrate all existing data over to Prisma. If you're a new user, your setup will already use Prisma.
To run any of these scripts, use `yarn` followed by the script name from the project root directory. For example: To run any of these scripts, use `yarn` followed by the script name from the project root directory. For example: