Tagged Questions
The comment-conventions tag has no wiki summary.
7
votes
2answers
75 views
What's a good way to make a type a plural when writing comments?
When writing comments, I sometimes find myself needing to talk about a type (class, struct, etc.) in plural when writing comments, such as:
/*
* getThings
* Get a list of --> Things <-- ...
2
votes
2answers
224 views
What are some “zen” moments of code commenting that you have created or reviewed?
I am looking for examples of reasonably short, but reasonably complicated segments of code (objects, functions, classes, a particular set of variable names, etc) that strike that perfect zen like ...
1
vote
4answers
129 views
What is the preferred way of notating methods in comments?
Sometimes one has to refer to another method when commenting. Here some example in PHP:
class A
{
/**
* @see B::bar
*/
public function foo()
{
B::bar();
}
}
class B
...
0
votes
1answer
49 views
What are some good Code Formats?
Firstly, I am aware of this question:
Are there standard formats for comments within code?
But it didn't answer mine. Whenever I write code, I always try to form a habit of ensuring that the comments ...
0
votes
1answer
111 views
HTML comment conventions
I need to use HTML comments to store specific data, but I don't want use comment schemes that already exist, as generated by programs like Dreamweaver <!-- #BeginLibraryItem "/File.lbi" --> or ...