In most programming languages, the comments that describe what the function does go before the function. You should probably do the same for bash. You should also use indentation:
# function 1 comment
func1() {
echo "example"
}