# `Git.GrepResult`
[🔗](https://github.com/joshrotenberg/git_wrapper_ex/blob/main/lib/git/grep_result.ex#L1)

Struct representing a single parsed git grep match.

Each result corresponds to one line of output from `git grep`,
containing the file path, optional line number, and matched content.

# `t`

```elixir
@type t() :: %Git.GrepResult{
  content: String.t(),
  file: String.t(),
  line_number: non_neg_integer() | nil
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
