xipd

programming language for audio processing that compiles to PureData
git clone https://git.ce9e.org/xipd.git

commit
141b581908a884e88e4dd15d00a6034d8d5bbbb7
parent
f2e4765a94b21680d3855644f665d43b4dc7d7ca
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-08-28 17:32
typo

Diffstat

M xipd/renderer.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/xipd/renderer.py b/xipd/renderer.py

@@ -61,7 +61,7 @@ class Renderer:
   61    61 	def call(self, name, args, scope):
   62    62 		params, body, path, lexical_scope = scope.get_func(name)
   63    63 		if len(args) != len(params):
   64    -1 			raise SyntaxError(f'wrong number of argumtnes for function {name}')
   -1    64 			raise SyntaxError(f'wrong number of arguments for function {name}')
   65    65 
   66    66 		subscope = Scope(lexical_scope)
   67    67 		for param, arg in zip(params, args):