From 71b72bbdd4cd07d04f9d4d44487b39e685a4877a Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 16 Oct 2021 11:31:01 -0400 Subject: [PATCH] chore: move comments below package declaration --- rl.go | 3 ++- rl_hilbiline.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rl.go b/rl.go index ca7a9dc..b7f1081 100644 --- a/rl.go +++ b/rl.go @@ -1,9 +1,10 @@ // +build !hilbiline +package main + // Here we define a generic interface for readline and hilbiline, // making them interchangable during build time // this is normal readline -package main import "github.com/bobappleyard/readline" diff --git a/rl_hilbiline.go b/rl_hilbiline.go index 1be732c..b68cedc 100644 --- a/rl_hilbiline.go +++ b/rl_hilbiline.go @@ -1,9 +1,10 @@ // +build hilbiline +package main + // Here we define a generic interface for readline and hilbiline, // making them interchangable during build time // this is hilbiline's, as is obvious by the filename -package main import "github.com/Rosettea/Hilbiline"