docs: normalize & make basic corrections to documentation

This commit is contained in:
2025-08-01 21:19:47 -05:00
parent e13fd6ab5b
commit 292879a8a9
28 changed files with 132 additions and 229 deletions

View File

@@ -133,11 +133,11 @@ func TestAppWithNilFields(t *testing.T) {
}
func TestAppWithWebsocketConnection(t *testing.T) {
// Test app with websocket connection (mocked)
// Test app with WebSocket connection (mocked)
app := &App{
ctx: context.Background(),
ctxCancel: func() {},
conn: nil, // In real test, this would be a mock websocket
conn: nil, // In real test, this would be a mock WebSocket
}
// Test that Close() handles nil connection gracefully