MCPcopy Index your code
hub / github.com/coder/coder / leadingLetters

Function leadingLetters

coderd/x/chatd/quickgen.go:1031–1038  ·  view source on GitHub ↗
(text string)

Source from the content-addressed store, hash-verified

1029}
1030
1031func leadingLetters(text string) string {
1032 for i, r := range text {
1033 if r < 'a' || r > 'z' {
1034 return text[:i]
1035 }
1036 }
1037 return text
1038}
1039
1040func hasSentenceBoundary(text string) bool {
1041 for i, r := range text {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected