---
title: "exported-declaration-comment"
description: "Document exported declarations."
image: "https://strider.gempir.com/og.png"
---

> Documentation Index
> Fetch the complete documentation index at: https://strider.gempir.com/llms.txt
> Use this file to discover all available pages before exploring further.

# exported-declaration-comment

<!-- Code generated by docs/scripts/generate-check-docs.go; DO NOT EDIT. -->

**Default severity:** `note`

Document exported declarations.

## Bad

```go
type Client struct{}
```

## Good

```go
// Client sends requests.
type Client struct{}
```

Source: https://strider.gempir.com/lints/exported-declaration-comment/index.mdx
