DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Use Java docs style instead of Scala docs style.
| Code Block | ||
|---|---|---|
| ||
/** This is a correct one-liner, short description. */
/**
* This is correct multi-line JavaDoc comment. And
* this is my second line, and if I keep typing, this would be
* my third line.
*/
/** In Spark, we don't use the ScalaDoc style so this
* is not correct.
*/ |
Imports
Always import packages using absolute paths (e.g. scala.util.Random) instead of relative ones (e.g. util.Random).
...