simple-expr 0.2.0.1 → 0.2.0.2
raw patch · 3 files changed
+6/−3 lines, 3 filesdep ~composition
Dependency ranges changed: composition
Files
- CHANGELOG.md +3/−0
- simple-expr.cabal +2/−2
- src/Debug/SimpleExpr/Tutorial.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,8 @@ # Revision history for simple-expr +## [0.2.0.2] -- 2025-11-23+* **Documentation fixes**+ ## [0.2.0.1] -- 2025-11-23 * **Documentation fixes**
simple-expr.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: simple-expr-version: 0.2.0.1+version: 0.2.0.2 synopsis: Minimalistic toolkit for simple mathematical expression. description: This is a minimalistic toolkit for simple mathematical expression developed for debug purposes similar to [simple-reflect](https://hackage.haskell.org/package/simple-reflect) package but based on slightly different principles. In particular, we use ordinary syntactic trees instead of turning them into strings. .@@ -20,7 +20,7 @@ .  .- See [tutorial](https://hackage-content.haskell.org/package/simple-expr-0.2.0.1/docs/Debug-SimpleExpr-Tutorial.html) for details.+ See [tutorial](https://hackage-content.haskell.org/package/simple-expr/docs/Debug-SimpleExpr-Tutorial.html) for details. category: Mathematics author: Alexey Tochin maintainer: Alexey.Tochin@gmail.com
src/Debug/SimpleExpr/Tutorial.hs view
@@ -133,4 +133,4 @@ -- expr = exp (i * k * x) + exp (-(i * k * x)) -- :} ----- +-- 