Skip to content

Commit 6fe2095

Browse files
committed
readme updates.
1 parent 84057f3 commit 6fe2095

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A single function string `funcstr` can be parsed (checked and compiled) into
2727
bytecode by calling the `fparser` class method subroutine `parse`:
2828

2929
```fortran
30-
call me%parse(funcstr, var, case_sensitive, error_msg)
30+
call me%parse(funcstr, var, case_sensitive)
3131
```
3232

3333
The variable names as they appear in the string `funcstr` have to be passed
@@ -44,7 +44,7 @@ The function value is evaluated for a specific set of variable values
4444
by calling the `fparser` class method subroutine `evaluate`:
4545

4646
```fortran
47-
call me%evaluate(val, res, error_msg)
47+
call me%evaluate(val, res)
4848
```
4949

5050
The variable values are passed in the one-dimensional array `val` which must

0 commit comments

Comments
 (0)