mirror of https://github.com/cheat/cheat.git
8 lines
116 B
Go
8 lines
116 B
Go
|
package sheet
|
||
|
|
||
|
// Match encapsulates search matches within cheatsheets
|
||
|
type Match struct {
|
||
|
Line int
|
||
|
Text string
|
||
|
}
|