---
title: "doc-comment-period"
description: "Require declaration documentation to end with punctuation."
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.

# doc-comment-period

**Default severity:** `note`

Package and exported-declaration documentation should read as complete prose.
The final sentence may end with `.`, `!`, `?`, or `:`.

## Bad

```go
// Client sends requests
```

## Good

```go
// Client sends requests.
```

Source: https://strider.gempir.com/lints/doc-comment-period/index.mdx
