/wiki/TagVersion.wiki
http://jsdoc-toolkit.googlecode.com/ · Unknown · 29 lines · 21 code · 8 blank · 0 comment · 0 complexity · b715396181e21575c8cff26cbc2e33d5 MD5 · raw file
- #summary @version
- == The @version Tag ==
- The `@version` tag allows you to mark documented code with a version number or information about the version.
- === Syntax ===
- {{{
- @version versionDescription
- }}}
- * versionDescription - Required: a description of what version this code is
- === Example ===
- {{{
- /**
- * @class
- * @version 2001 beta release
- */
- function Hal() {
- this.sing = function(song) {
- }
- }
- }}}
- === See Also ===
- * The [TagSince @since] tag.