docs: fix typos in markdown documentation#5562
Open
Goldyvaiiii wants to merge 2 commits intodrizzle-team:mainfrom
Open
docs: fix typos in markdown documentation#5562Goldyvaiiii wants to merge 2 commits intodrizzle-team:mainfrom
Goldyvaiiii wants to merge 2 commits intodrizzle-team:mainfrom
Conversation
Pspsps12
reviewed
Apr 14, 2026
| // Refining the fields - useful if you want to change the fields before they become nullable/optional in the final schema | ||
| const insertUserSchema = createInsertSchema(users, { | ||
| id: (schema) => schema.atLeast(1), | ||
| id: (schema) => schema.at least(1), |
There was a problem hiding this comment.
The atLeast is a part of the arktype code and is not a typo
Pspsps12
reviewed
Apr 14, 2026
| // Refining the fields - useful if you want to change the fields before they become nullable/optional in the final schema | ||
| const insertUserSchema = createInsertSchema(users, { | ||
| id: (schema) => schema.atLeast(1), | ||
| id: (schema) => schema.at least(1), |
There was a problem hiding this comment.
Same here:
The atLeast is a part of the arktype code and is not a typo
Pspsps12
suggested changes
Apr 14, 2026
Pspsps12
left a comment
There was a problem hiding this comment.
Please revert the changes that affect the code and are not actually a typo pointed out in my comments
| * Unix time at which the key will expire, in seconds (a positive integer). | ||
| */ | ||
| exat?: number; | ||
| exact?: number; |
There was a problem hiding this comment.
Again, part of the code and is valid. exat stands for "expire at"
Pspsps12
reviewed
Apr 14, 2026
| ### Bug fixes | ||
|
|
||
| - Fixed `algorythm` => `algorithm` typo. | ||
| - Fixed `algorithm` => `algorithm` typo. |
There was a problem hiding this comment.
This is intentional to point out the fixes in that release
Pspsps12
reviewed
Apr 14, 2026
| - Fixed pg-native Pool detection in node-postgres transactions | ||
| - Allowed subqueries in select fields | ||
| - Updated typo algorythm => algorithm | ||
| - Updated typo algorithm => algorithm |
There was a problem hiding this comment.
Same here:
This is intentional to point out the fixes in that release
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes a few minor typographical errors in the markdown documentation (README, etc.) to improve readability. Found via codespell.