# `ExAST.Comment`
[🔗](https://github.com/elixir-vibe/ex_ast/blob/v0.11.0/lib/ex_ast/comment.ex#L1)

A source comment with line/column metadata.

# `t`

```elixir
@type t() :: %ExAST.Comment{
  column: pos_integer() | nil,
  line: pos_integer() | nil,
  next_eol_count: non_neg_integer() | nil,
  previous_eol_count: non_neg_integer() | nil,
  text: String.t()
}
```

---

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