File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -287,14 +287,14 @@ Also, the following constants are available:
287287## Compile-time options
288288
289289
290- By default, TinyExpr does exponentation from left to right. For example:
290+ By default, TinyExpr does exponentiation from left to right. For example:
291291
292292` a^b^c == (a^b)^c ` and ` -a^b == (-a)^b `
293293
294294This is by design. It's the way that spreadsheets do it (e.g. Excel, Google Sheets).
295295
296296
297- If you would rather have exponentation work from right to left, you need to
297+ If you would rather have exponentiation work from right to left, you need to
298298define ` TE_POW_FROM_RIGHT ` when compiling ` tinyexpr.c ` . There is a
299299commented-out define near the top of that file. With this option enabled, the
300300behaviour is:
You can’t perform that action at this time.
0 commit comments