Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xrstf committed Dec 3, 2023
1 parent 43fad67 commit f719530
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ Welcome to the Rudi documentation :smile:

## Strings Functions

* [`concat`](functions/strings-concat.md)concatenate items in a vector using a common glue string
* [`concat`](functions/strings-concat.md)concatenates items in a vector using a common glue string
* [`has-prefix?`](functions/strings-has-prefix.md) – returns true if the given string has the prefix
* [`has-suffix?`](functions/strings-has-suffix.md) – returns true if the given string has the suffix
* [`split`](functions/strings-split.md)split a string into a vector
* [`split`](functions/strings-split.md)splits a string into a vector
* [`to-lower`](functions/strings-to-lower.md) – returns the lowercased version of the given string
* [`to-upper`](functions/strings-to-upper.md) – returns the uppercased version of the given string
* [`trim`](functions/strings-trim.md) – returns the given whitespace with leading/trailing whitespace removed
Expand Down
4 changes: 2 additions & 2 deletions docs/functions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ applied to all functions (so technically `eq?!` is valid, though weird looking).

## Strings Functions

* [`concat`](../functions/strings-concat.md)concatenate items in a vector using a common glue string
* [`concat`](../functions/strings-concat.md)concatenates items in a vector using a common glue string
* [`has-prefix?`](../functions/strings-has-prefix.md) – returns true if the given string has the prefix
* [`has-suffix?`](../functions/strings-has-suffix.md) – returns true if the given string has the suffix
* [`split`](../functions/strings-split.md)split a string into a vector
* [`split`](../functions/strings-split.md)splits a string into a vector
* [`to-lower`](../functions/strings-to-lower.md) – returns the lowercased version of the given string
* [`to-upper`](../functions/strings-to-upper.md) – returns the uppercased version of the given string
* [`trim`](../functions/strings-trim.md) – returns the given whitespace with leading/trailing whitespace removed
Expand Down
2 changes: 1 addition & 1 deletion pkg/lang/ast/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ func (a EvaluatedPathStep) ExpressionName() string {
}

// Shims are used to turn any Go value into a Rudi expression. This is done when
// contructing new expressions and tuples at runtime. A Rudi program itself can
// constructing new expressions and tuples at runtime. A Rudi program itself can
// never contain Shim nodes.
type Shim struct {
Value any
Expand Down

0 comments on commit f719530

Please sign in to comment.