Comment
A comment is a portion of text that you put into the source code of a computer program to help explain what is happening in that piece of code. This text portion is ignored by the compiler/interpreter and is usually considered an understandaing aid to maintainers of the said computer program.
Example
Comments are useful to help developers understand design patterns and decisions.
Further Reading
- Here’s a Wikipedia article for more detailed information on comments.