Skip to content

Commit

Permalink
Use any instead of interface{} (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 authored Aug 22, 2023
1 parent 0177bdb commit 92cbb9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Here's a list of all available value types in Tengo.
| bytes | byte array | `[]byte` |
| error | [error](#error-values) value | - |
| time | time value | `time.Time` |
| array | value array _(mutable)_ | `[]interface{}` |
| array | value array _(mutable)_ | `[]any` |
| immutable array | [immutable](#immutable-values) array | - |
| map | value map with string keys _(mutable)_ | `map[string]interface{}` |
| map | value map with string keys _(mutable)_ | `map[string]any` |
| immutable map | [immutable](#immutable-values) map | - |
| undefined | [undefined](#undefined-values) value | - |
| function | [function](#function-values) value | - |
Expand Down

0 comments on commit 92cbb9b

Please sign in to comment.