Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 230 Bytes

if-return.md

File metadata and controls

11 lines (6 loc) · 230 Bytes

Pattern: Redundant if ...; err != nil check

Issue: -

Description

Checking if an error is nil to just after return the error or nil is redundant.

Further Reading