Skip to content

Commit 9f69189

Browse files
committed
fixed typos
1 parent c5f573e commit 9f69189

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
@@ -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

294294
This 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
298298
define `TE_POW_FROM_RIGHT` when compiling `tinyexpr.c`. There is a
299299
commented-out define near the top of that file. With this option enabled, the
300300
behaviour is:

0 commit comments

Comments
 (0)