Commenting
Commenting should be rare, and done in such a way that ensures removal upon code edits.
- // Draw seeds
- sneed.draw(seed);
- chuck.draw(feed);
- // Draw seeds
- chuck.draw(feed);
- // Bad Comment
- this->sneed();
- this->seed ();
- // Bad Comment
- this->feed();
- /* Good Comment */
- {
- this->sneed();
- this->seed ();
- }
- this->feed(); // Acceptable Comment