What's the preferred style for documenting functions? ``` bash a() { # a does foo ... } # b does foo b() { ... } c() { # c does foo ... } ```