Commit836fc7d1Recorded25 Feb 2026Repositorysigil-app

Review and fix procedure specs against CLAUDE.md conventions

Message

- list.sgl: Add missing return types to 6 specs (list-for-each, list-fold, list-fold-right, list-find, list-find-index, list-index) - struct.sgl: Add missing return type to struct-type-of, use (maybe struct-type?) for struct-type-parent - array.sgl, sxml.sgl, markdown.sgl, sqlite.sgl: Use (maybe ...) instead of bare any? for nullable return values - http/client.sgl: Add missing keyword arg specs to all 10 HTTP methods - http/server.sgl, http/response.sgl: Add missing keyword arg specs - app.sgl: Use specific return type number? for wait-frame - error.sgl: Add rest arg spec for format-stack-trace

Changed
 src/sigil/app.sgl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Diff
src/sigil/app.sglmodified
@@ -49,7 +49,7 @@
49
50
;; Yield point - returns delta time when resumed
51
(define (wait-frame)
52
(: -> any?)
+52
(: -> number?)
53
(send 'frame-complete))
54
55
;; Internal frame callback - resumes the game coroutine