MCPcopy Create free account
hub / github.com/betta-tech/byo-coding-agent / titleCase

Function titleCase

internal/memory/sessionfiles.go:291–296  ·  view source on GitHub ↗
(s string)

Source from the content-addressed store, hash-verified

289}
290
291func titleCase(s string) string {
292 if s == "" {
293 return s
294 }
295 return strings.ToUpper(s[:1]) + s[1:]
296}

Callers 1

assembleSessionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected