From 02eadcbb8672b665661eb09ab50359a8c2bbb6e4 Mon Sep 17 00:00:00 2001 From: Joe Date: Fri, 15 Dec 2023 20:20:20 +0100 Subject: new stuff --- c_utils.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c_utils.go') diff --git a/c_utils.go b/c_utils.go index 55a9097..26a26b0 100644 --- a/c_utils.go +++ b/c_utils.go @@ -53,9 +53,9 @@ import ( ) // c_die displays an error string to the stderr fd and exits the program -// with the return code 1. -// It takes an optional err argument of the error type as a complement of -// information. +// with the return code 1 +// it takes an optional err argument of the error type as a complement of +// information func c_die(str string, err error) { fmt.Fprintf(os.Stderr, "error: %s", str) if err != nil { -- cgit v1.2.3