Skip to content

Commit

Permalink
docs: Improve wording
Browse files Browse the repository at this point in the history
Co-authored-by: Nicola Puppa <[email protected]>
  • Loading branch information
saig0 and nicpuppa authored Sep 5, 2024
1 parent 4be8b0f commit 4b660bd
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ context([{"key":"a", "value":1}, {"key":"b", "value":2}])

Returns a date from the given value.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` that is invalid because June has
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` which is invalid because June has
only 30 days.

**Function signature**
Expand Down Expand Up @@ -105,7 +105,7 @@ date(date and time("2012-12-25T11:00:00"))

Returns a date from the given components.

Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` that is invalid because
Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` which is invalid because
June has only 30 days.

**Function signature**
Expand Down Expand Up @@ -187,7 +187,7 @@ time(14, 30, 0, duration("PT1H"))

Parses the given string into a date and time.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` that is invalid because
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` which is invalid because
June has only 30 days.

**Function signature**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ duration("P3M")
```

The value is `null` if a date or date and time literal doesn't represent a valid calendar date, for example,
`@"2024-06-31"` that is invalid because June has only 30 days.
`@"2024-06-31"` which is invalid because June has only 30 days.

### Addition

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ not(2, 3)

### Expressions

When a unary operator is not enough to express the condition, any expression can be used that returns a boolean value,
When a unary operator is not enough to express the condition, any expression that returns a boolean value can be used,
such as [invoking a function](/components/modeler/feel/language-guide/feel-functions.md#invocation).

In the expression, the input value can be accessed by the special variable `?`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ context([{"key":"a", "value":1}, {"key":"b", "value":2}])

Returns a date from the given value.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` that is invalid because June has
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` which is invalid because June has
only 30 days.

**Function signature**
Expand Down Expand Up @@ -105,7 +105,7 @@ date(date and time("2012-12-25T11:00:00"))

Returns a date from the given components.

Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` that is invalid because
Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` which is invalid because
June has only 30 days.

**Function signature**
Expand Down Expand Up @@ -187,7 +187,7 @@ time(14, 30, 0, duration("PT1H"))

Parses the given string into a date and time.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` that is invalid because
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` which is invalid because
June has only 30 days.

**Function signature**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ duration("P3M")
```

The value is `null` if a date or date and time literal doesn't represent a valid calendar date, for example,
`@"2024-06-31"` that is invalid because June has only 30 days.
`@"2024-06-31"` which is invalid because June has only 30 days.

### Addition

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ not(2, 3)

### Expressions

When a unary operator is not enough to express the condition, any expression can be used that returns a boolean value,
When a unary operator is not enough to express the condition, any expression that returns a boolean value can be used,
such as [invoking a function](/components/modeler/feel/language-guide/feel-functions.md#invocation).

In the expression, the input value can be accessed by the special variable `?`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ context([{"key":"a", "value":1}, {"key":"b", "value":2}])

Returns a date from the given value.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` that is invalid because June has
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` which is invalid because June has
only 30 days.

**Function signature**
Expand Down Expand Up @@ -105,7 +105,7 @@ date(date and time("2012-12-25T11:00:00"))

Returns a date from the given components.

Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` that is invalid because
Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` which is invalid because
June has only 30 days.

**Function signature**
Expand Down Expand Up @@ -187,7 +187,7 @@ time(14, 30, 0, duration("PT1H"))

Parses the given string into a date and time.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` that is invalid because
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` which is invalid because
June has only 30 days.

**Function signature**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ duration("P3M")
```

The value is `null` if a date or date and time literal doesn't represent a valid calendar date, for example,
`@"2024-06-31"` that is invalid because June has only 30 days.
`@"2024-06-31"` which is invalid because June has only 30 days.

### Addition

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ not(2, 3)

### Expressions

When a unary operator is not enough to express the condition, any expression can be used that returns a boolean value,
When a unary operator is not enough to express the condition, any expression that returns a boolean value can be used,
such as [invoking a function](/components/modeler/feel/language-guide/feel-functions.md#invocation).

In the expression, the input value can be accessed by the special variable `?`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ context([{"key":"a", "value":1}, {"key":"b", "value":2}])

Returns a date from the given value.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` that is invalid because June has
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` which is invalid because June has
only 30 days.

**Function signature**
Expand Down Expand Up @@ -105,7 +105,7 @@ date(date and time("2012-12-25T11:00:00"))

Returns a date from the given components.

Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` that is invalid because
Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` which is invalid because
June has only 30 days.

**Function signature**
Expand Down Expand Up @@ -187,7 +187,7 @@ time(14, 30, 0, duration("PT1H"))

Parses the given string into a date and time.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` that is invalid because
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` which is invalid because
June has only 30 days.

**Function signature**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ duration("P3M")
```

The value is `null` if a date or date and time literal doesn't represent a valid calendar date, for example,
`@"2024-06-31"` that is invalid because June has only 30 days.
`@"2024-06-31"` which is invalid because June has only 30 days.

### Addition

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ not(2, 3)

### Expressions

When a unary operator is not enough to express the condition, any expression can be used that returns a boolean value,
When a unary operator is not enough to express the condition, any expression that returns a boolean value can be used,
such as [invoking a function](/components/modeler/feel/language-guide/feel-functions.md#invocation).

In the expression, the input value can be accessed by the special variable `?`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ context([{"key":"a", "value":1}, {"key":"b", "value":2}])

Returns a date from the given value.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` that is invalid because June has
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31"` which is invalid because June has
only 30 days.

**Function signature**
Expand Down Expand Up @@ -105,7 +105,7 @@ date(date and time("2012-12-25T11:00:00"))

Returns a date from the given components.

Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` that is invalid because
Returns `null` if the components don't represent a valid calendar date, for example, `2024,6,31` which is invalid because
June has only 30 days.

**Function signature**
Expand Down Expand Up @@ -187,7 +187,7 @@ time(14, 30, 0, duration("PT1H"))

Parses the given string into a date and time.

Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` that is invalid because
Returns `null` if the string is not a valid calendar date, for example, `"2024-06-31T10:00:00"` which is invalid because
June has only 30 days.

**Function signature**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ duration("P3M")
```

The value is `null` if a date or date and time literal doesn't represent a valid calendar date, for example,
`@"2024-06-31"` that is invalid because June has only 30 days.
`@"2024-06-31"` which is invalid because June has only 30 days.

### Addition

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ not(2, 3)

### Expressions

When a unary operator is not enough to express the condition, any expression can be used that returns a boolean value,
When a unary operator is not enough to express the condition, any expression that returns a boolean value can be used,
such as [invoking a function](/components/modeler/feel/language-guide/feel-functions.md#invocation).

In the expression, the input value can be accessed by the special variable `?`.
Expand Down

0 comments on commit 4b660bd

Please sign in to comment.