First of all, "programming command" is a little unclear. "command" usually mean the statements available in a programming language with which to construct a program, such as WHILE, DO, FOR, BEGIN, END, etc.
What you wrote as examples look more like the comments you might write in a program source text to annotate it, or in a separate documentation of it.
In the source code itself, articles are often omitted because you want to be succinct not to unnecessarily clutter the code.
If it is part of separate documentation, you should write properly observing the normal rules of the article usage.
In your two example lines, I think both are okay - #1 is probably better for full documentation, but not as a comment line in the program.
That's my opinion anyway. Good luck.