483: Fix previous patch

https://svn.lrde.epita.fr/svn/oln/trunk Index: ChangeLog from Quentin Hocquet <quentin.hocquet@lrde.epita.fr> Fix previous patch * Fix error in svn external link to transformers * tools: . * tools/tests/good/funcall_no-args.scl, tools/tests/good/funcall.scl: fix typo funcall.scl | 2 +- funcall_no-args.scl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: tools/tests/good/funcall_no-args.scl --- tools/tests/good/funcall_no-args.scl (revision 482) +++ tools/tests/good/funcall_no-args.scl (working copy) @@ -1,4 +1,4 @@ doit : () -> int = { - -> chiche(); + -> foo(); } \ No newline at end of file Index: tools/tests/good/funcall.scl --- tools/tests/good/funcall.scl (revision 482) +++ tools/tests/good/funcall.scl (working copy) @@ -1,4 +1,4 @@ doit : () -> int = { - -> chiche("pelle", "branle"); + -> foo("bar", "baz"); }
participants (1)
-
Quentin Hocquet