---
title: "confusing-results"
description: "Name consecutive unnamed results that have the same type."
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.

# confusing-results

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

**Default severity:** `warning`

Name consecutive unnamed results that have the same type.

## Bad

```go
func bounds() (int, int)
```

## Good

```go
func bounds() (min int, max int)
```

Source: https://strider.gempir.com/lints/confusing-results/index.mdx
