From f29035f3c9b110cfc8034784cb64b4ff5db16783 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sun, 8 Mar 2026 17:28:03 -0400 Subject: [PATCH] style: replace em dashes with colons in docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb267db..afc1cc8 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ Register with `registerCalendar('my-id', myEngine)`. Then pass `{ calendar: 'my- ## Architecture -The UAQ engine performs a binary search over the 184-entry table — O(log 183) per conversion. The FCNA engine computes new moon times using the Meeus Ch. 49 algorithm (3 to 5 trigonometric evaluations per call). The registry pattern lets any consumer add custom calendar systems at runtime without modifying the core. +The UAQ engine performs a binary search over the 184-entry table: O(log 183) per conversion. The FCNA engine computes new moon times using the Meeus Ch. 49 algorithm (3 to 5 trigonometric evaluations per call). The registry pattern lets any consumer add custom calendar systems at runtime without modifying the core. For more detail see the [Architecture wiki page](https://github.com/acamarata/hijri-core/wiki/Architecture).