Bash function comments before or inside the function [closed]

Does the Bash language have a standard that dictates whether comments about the function should precede the function or be placed inside of it. I have seen scripts written both ways.

# Comment preceding function.
func1(){
echo "example"
}

-or-

func2() {
# Comment inside of function
echo "example"
}