---
title: "error-last-result"
description: "Place error last in result lists."
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.

# error-last-result

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

**Default severity:** `warning`

Place error last in result lists.

## Bad

```go
func Load() (error, string)
```

## Good

```go
func Load() (string, error)
```

Source: https://strider.gempir.com/lints/error-last-result/index.mdx
