It's prefence. As long a you have an String array as the argument, it can have any name, and be "formatted" anyway.
public static void main(String[] args)
public static void main(String args[])
public static void main(String[] s)
public static void main(String s[])
All of those are perfectly legal. Actually as long as it's public, static, void, named main, and as a String[] as a parameter, This is even legal:
static public void main(String[] args)
So basicly it comes down to personal preference.