Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos #1600

Merged
merged 2 commits into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/cosmos/ics20/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ common-sense specification and make the following assumptions:

- Balances are always non-negative, and operations error if there is
insufficient balance. This assumption [is documented in pseudo-code in the
natural language spec][balancesNonNegative] for `TransferCoins`, but not explicitely stated for
natural language spec][balancesNonNegative] for `TransferCoins`, but not explicitly stated for
`BurnCoins`:

```typescript
Expand Down
4 changes: 2 additions & 2 deletions quint/src/effects/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function bindEntity(name: string, entity: Entity): Substitutions {
}

/**
* Finds all entity names refered to by an entity
* Finds all entity names referred to by an entity
*
* @param entity the entity to be searched
*
Expand All @@ -229,7 +229,7 @@ export function entityNames(entity: Entity): string[] {
}

/**
* Finds all state variables refered to by an entity
* Finds all state variables referred to by an entity
*
* @param entity the entity to be searched
*
Expand Down
2 changes: 1 addition & 1 deletion quint/src/flattening/flattener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import assert from 'assert'
import { uniqBy } from 'lodash'

/**
* Flatten a module, replacing instances, imports and exports with definitions refered by the module.
* Flatten a module, replacing instances, imports and exports with definitions referred by the module.
*
* @param quintModule - The module to be flattened
* @param modulesByName - A map of referred modules by name
Expand Down
2 changes: 1 addition & 1 deletion vscode/quint-vscode/server/src/rename.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { QuintDef } from '@informalsystems/quint'
*
* The regular expression recognizes two capture groups:
* - the first capture group matches the qualifiers,
* - the second caputre group matches the declaration's name.
* - the second capture group matches the declaration's name.
*/
export function getDeclRegExp(decl: QuintDef): RegExp {
switch (decl.kind) {
Expand Down
Loading