Skip to content

Commit

Permalink
Add interval description to glossary (#2378)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmooring committed Dec 28, 2023
1 parent f9b612b commit 6d78035
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions content/en/getting-started/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,16 @@ A numeric data type without a fractional component. For example, `42`.

Software design and development efforts that enable [localization](#localization). See the [W3C definition](https://www.w3.org/International/questions/qa-i18n). Abbreviated i18n.

###### interval

An [interval](https://en.wikipedia.org/wiki/Interval_(mathematics)) is a range of numbers between two endpoints: closed, open, or half-open.

- A _closed_ interval, denoted by brackets, includes its endpoints. For example, [0,&nbsp;1]&nbsp;is the interval where `0 <= x <= 1`.

- An _open_ interval, denoted by parenthesis, excludes its endpoints. For example, (0,&nbsp;1)&nbsp;is the interval where `0 < x < 1`.

- A _half-open_ interval includes only one of its endpoints. For example, (0,&nbsp;1]&nbsp;is the _left-open_ interval where `0 < x <= 1`, while [0,&nbsp;1)&nbsp;is the _right-open_ interval where `0 <= x < 1`.

###### kind

See [page kind](#page-kind).
Expand Down

0 comments on commit 6d78035

Please sign in to comment.