()
| 1580 | } |
| 1581 | |
| 1582 | func availableDocKeys() []string { |
| 1583 | keys := make([]string, 0, len(docSpecs)) |
| 1584 | for key := range docSpecs { |
| 1585 | keys = append(keys, key) |
| 1586 | } |
| 1587 | sort.Strings(keys) |
| 1588 | return keys |
| 1589 | } |
| 1590 | |
| 1591 | func resolveDocSpec(key string) (docSpec, bool) { |
| 1592 | normalized := strings.TrimSpace(strings.ToLower(key)) |
no outgoing calls
no test coverage detected