comment

[kom-ent] /ˈkɒm ɛnt/
noun
1.
a remark, observation, or criticism:
a comment about the weather.
2.
gossip; talk:
His frequent absences gave rise to comment.
3.
a criticism or interpretation, often by implication or suggestion:
The play is a comment on modern society.
4.
a note in explanation, expansion, or criticism of a passage in a book, article, or the like; annotation.
5.
explanatory or critical matter added to a text.
6.
Also called rheme. Linguistics. the part of a sentence that communicates new information about the topic.
Compare topic (def 4).
verb (used without object)
7.
to make remarks, observations, or criticisms:
He refused to comment on the decision of the court.
8.
to write explanatory or critical notes upon a text.
verb (used with object)
9.
to make comments or remarks on; furnish with comments; annotate.
Origin
1350-1400; Middle English coment < Latin commentum device, fabrication (Late Latin: interpretation, commentary), noun use of neuter of commentus (past participle of comminīscī to devise), equivalent to com- com- + men- (base of mēns, mentis mind) + -tus past participle ending
Related forms
commentable, adjective
commenter, noun
precomment, noun, verb
uncommented, adjective
uncommenting, adjective
undercomment, noun
undercomment, verb
Can be confused
comment, commentate (see usage note at commentate)
Synonyms
1. See remark. 4. addendum, commentary. 8. annotate, elucidate.
Examples from the web for comment
  • It is made up of comment and opinion, and also new emotions which are vaguely applied to his own life.
  • She would not comment on how the aftermarket sites had affected revenue.
  • Go ahead, try it out for yourself and send us a comment.
  • Your comment about managing creativity as a series of difficult balancing acts struck several chords with me.
  • Please see my above comment if interested in the subject.
  • The chatty coffee-shop employee's comment confused me.
  • Coombs was unavailable for comment and has indicated he will not be speaking with any media prior to the hearing.
  • The first time you write a comment or review, you will be asked to complete a quick registration process.
  • Her lawyer has not responded to repeated requests for comment.
  • King also declined to comment through a representative.
British Dictionary definitions for comment

comment

/ˈkɒmɛnt/
noun
1.
a remark, criticism, or observation
2.
talk or gossip
3.
a note explaining or criticizing a passage in a text
4.
explanatory or critical matter added to a text
verb
5.
when intr, often foll by on; when tr, takes a clause as object. to remark or express an opinion
6.
(intransitive) to write notes explaining or criticizing a text
Derived Forms
commenter, noun
Word Origin
C15: from Latin commentum invention, from comminiscī to contrive, related to mens mind
Word Origin and History for comment
n.

late 14c., from Old French coment "commentary" or directly from Late Latin commentum "comment, interpretation," in classical Latin "invention, fabrication, fiction," neuter past participle of comminisci "to contrive, devise," from com-, intensive prefix (see com-), + base of meminisse "to remember," related to mens (genitive mentis) "mind" (see mind (n.)). The Latin word meaning "something invented" was taken by Isidore and other Christian theologians for "interpretation, annotation." No comment as a stock refusal to answer a journalist's question is first recorded 1950, from Truman's White House press secretary, Charles Ross.

v.

early 15c., from Middle French commenter (15c.), from Latin commentari, from commentum (see comment (n.)). Related: Commented; commenting.

comment in Technology

programming
(Or "remark") Explanatory text embedded in program source (or less often data) intended to help human readers understand it.
Code completely without comments is often hard to read, but code with too many comments is also bad, especially if the comments are not kept up-to-date with changes to the code. Too much commenting may mean that the code is over-complicated. A good rule is to comment everything that needs it but write code that doesn't need much of it. Comments that explain __why__ something is done and how the code relates to its environment are useful.
A particularly irksome form of over-commenting explains exactly what each statement does, even when it is obvious to any reasonably competant programmer, e.g.
/* Open the input file */ infd = open(input_file, O_RDONLY);
(2007-02-19)