Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagescala
// This is a short, single line comment
 
// This is a multi line comment.
// Bla bla bla
 
/*
 * Do not use /*this */style for multi line comments. This style
 * style of comment interferes with commenting out
 * blocks of
 * code with /* */, and also makes code comments harder
 * to distinguish from Scala doc / Java doc comments.
 */
 
/**
 * Do not use scala doc style for inline comments.
 */

...