diff options
| author | Fuwn <[email protected]> | 2026-01-31 08:23:37 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-31 08:23:37 +0000 |
| commit | 5bede31ce2a93acedce56a79934ebe76418f697f (patch) | |
| tree | ab538aaccf07ce5c944b526978aeac7eb4a25373 | |
| parent | perf: Precompile regular expressions (diff) | |
| download | iku-5bede31ce2a93acedce56a79934ebe76418f697f.tar.xz iku-5bede31ce2a93acedce56a79934ebe76418f697f.zip | |
docs(README): Expand "How It Works"
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ Code structure should be visually apparent from its formatting. Iku groups state ## How It Works -Iku runs `go fmt` first, then applies its grammar-based blank-line rules on top of it. Your code gets standard Go formatting plus structural separation. +Iku applies standard Go formatting (via [go/format](https://pkg.go.dev/go/format)) first ([formatter.go#L33](https://github.com/Fuwn/iku/blob/main/formatter.go#L33)), then adds its grammar-based blank-line rules on top. Your code gets `go fmt` output plus structural separation. ## Installation |