From ddbbdcd7163073ff924baf16d95c633ccb8c4841 Mon Sep 17 00:00:00 2001 From: Sunny Date: Tue, 25 Jun 2024 19:36:39 +0000 Subject: [PATCH] docs: fix go import indentations in example Fix the Go import indentations in the example code snippet of the CONTRIBUTING doc. --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index be84f5d0..c2104661 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -111,15 +111,15 @@ use `go fmt` before committing any change. package example import ( - "context" + "context" + + "github.com/sirupsen/logrus" - "github.com/sirupsen/logrus" - "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/s3" - + "github.com/ekristen/libnuke/pkg/settings" - + "github.com/ekristen/aws-nuke/pkg/types" ) ```