From 4112813ad3bb03e28647423881d86ff98744fde6 Mon Sep 17 00:00:00 2001 From: Joes <j.dejonge@students.uu.nl> Date: Wed, 3 Nov 2021 13:28:27 +0100 Subject: [PATCH] Removed credits --- aql/hierarchy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aql/hierarchy.go b/aql/hierarchy.go index e159c20..a437ad2 100644 --- a/aql/hierarchy.go +++ b/aql/hierarchy.go @@ -432,7 +432,7 @@ func AboveAppend(list [][]pdict, index int, value []pdict) [][]pdict { return BelowAppend(list, index-1, value) } -// A function that appends 1 level below (thanks to wasmup on stackoverflow) +// A function that appends 1 level below func BelowAppend(lists [][]pdict, index int, value []pdict) [][]pdict { if len(lists)-1 == index { // nil or empty slice or after last element return append(lists, value) -- GitLab