#!/usr/bin/env sh
set -e

# ── Spell check ─────────────────────────────────────────────────────────────
# Catch typos in source and prose before they land. Configured by typos.toml
# at the repo root (generated/vendored files are excluded there).
# `make spell` installs typos-cli if missing, so contributors never need to
# know the tool's crate/binary name.
make spell
echo "Spell check passed."
