diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-04-23 15:40:23 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-04-24 10:38:22 +0000 |
| commit | 8f982de7103e6e3a24eff84b3a250e5cb1e6c241 (patch) | |
| tree | 42e6deff060f16a89ad9667d54484918f6dd556e | |
| parent | report IO errors with require (diff) | |
| download | alive-8f982de7103e6e3a24eff84b3a250e5cb1e6c241.tar.gz alive-8f982de7103e6e3a24eff84b3a250e5cb1e6c241.zip | |
lib/string: fix str/..
| -rw-r--r-- | alv-lib/string.moon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alv-lib/string.moon b/alv-lib/string.moon index faa7ab3..5f54b07 100644 --- a/alv-lib/string.moon +++ b/alv-lib/string.moon @@ -7,7 +7,7 @@ str = ValueStream.meta examples: { '(.. v1 [v2…])', '(str v1 [v2…])' } value: class extends Op setup: (inputs) => - @out or= ValueStream 'string' + @out or= ValueStream 'str' super [Input.hot v for v in *inputs] tick: => |
