From 9739f9241212ce384de9e8910cdbd62812782492 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Fri, 6 Feb 2026 18:55:21 -0800 Subject: [PATCH] shelley/loop: add a few periods To tickle CI. --- loop/loop.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loop/loop.go b/loop/loop.go index acbc517440d509b168aa6df2a8565333403256d4..d162203b8e9de33ceb8b736168985b24a4678fbf 100644 --- a/loop/loop.go +++ b/loop/loop.go @@ -14,14 +14,14 @@ import ( "shelley.exe.dev/llm" ) -// MessageRecordFunc is called to record new messages to persistent storage +// MessageRecordFunc is called to record new messages to persistent storage. type MessageRecordFunc func(ctx context.Context, message llm.Message, usage llm.Usage) error // GitStateChangeFunc is called when the git state changes at the end of a turn. // This is used to record user-visible notifications about git changes. type GitStateChangeFunc func(ctx context.Context, state *gitstate.GitState) -// Config contains all configuration needed to create a Loop +// Config contains all configuration needed to create a Loop. type Config struct { LLM llm.Service History []llm.Message