Skip to content

Commit 64933ef

Browse files
committed
Fix single-quotes
1 parent 4864984 commit 64933ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/symengine.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def evalf(operand, prec = 53, real = false)
4141
def lambdify(exp, *syms)
4242
syms.flatten!
4343
if exp.free_symbols.count > syms.length
44-
raise ArgumentError, 'Formula contains #{exp.free_symbols.count} free '\
44+
raise ArgumentError, "Formula contains #{exp.free_symbols.count} free "\
4545
'symbols. You should provide at least this number '\
46-
'of arguments (only #{syms.length} given).'
46+
"of arguments (only #{syms.length} given)."
4747
end
4848
# TODO: Implement one of the two options below.
4949
# 1. check that all the symbol names and function names are valid.

0 commit comments

Comments
 (0)