Skip to content
Open
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
4 changes: 2 additions & 2 deletions k-distribution/include/kframework/builtin/domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,7 @@ The syntax of ordinary floating-point values in K consists of an optional sign
followed by an optional fractional part. Either the integer part or the
fractional part must be specified. The mantissa is followed by an optional
exponent part, which consists of an `e` or `E`, an optional sign (+ or -),
and an integer. The expoennt is followed by an optional suffix, which can be
and an integer. The exponent is followed by an optional suffix, which can be
either `f`, `F`, `d`, `D`, or `pNxM` where `N` and `M` are positive integers.
`p` and `x` can be either upper or lowercase.

Expand Down Expand Up @@ -1628,7 +1628,7 @@ You can:

### Floating-point comparisons

Compute whether a float is less than or equasl to, less than, greater than or
Compute whether a float is less than or equals to, less than, greater than or
equal to, greater than, equal, or unequal to another float. Note that
`X ==Float Y` and `X ==K Y` might yield different values. The latter should be
used in cases where you want to compare whether two values of sort `Float`
Expand Down
4 changes: 2 additions & 2 deletions pyk/src/tests/profiling/test-data/domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -1449,7 +1449,7 @@ The syntax of ordinary floating-point values in K consists of an optional sign
followed by an optional fractional part. Either the integer part or the
fractional part must be specified. The mantissa is followed by an optional
exponent part, which consists of an `e` or `E`, an optional sign (+ or -),
and an integer. The expoennt is followed by an optional suffix, which can be
and an integer. The exponent is followed by an optional suffix, which can be
either `f`, `F`, `d`, `D`, or `pNxM` where `N` and `M` are positive integers.
`p` and `x` can be either upper or lowercase.

Expand Down Expand Up @@ -1606,7 +1606,7 @@ You can:

### Floating-point comparisons

Compute whether a float is less than or equasl to, less than, greater than or
Compute whether a float is less than or equals to, less than, greater than or
equal to, greater than, equal, or unequal to another float. Note that
`X ==Float Y` and `X ==K Y` might yield different values. The latter should be
used in cases where you want to compare whether two values of sort `Float`
Expand Down
Loading