Versions Compared

Key

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

...

Note
titleCorrect, but discouraged
Code Block
languagephp

$c = 2*pi()*$r; // Calculate the circumference

...

These comments should only be used to identify TODO comments.

Warning
titleIncorrect
Code Block
languagephp
# Calculate the circumference
$c = 2*pi()*$r;
Tip
titleCorrect
Code Block
languagephp
titleA TODO Comment
firstline1
linenumberstrue
<?php
class MyClass {
    #
    # TODO: Finish this class.
    #
}
?>