/wiki/TagVersion.wiki

http://jsdoc-toolkit.googlecode.com/ · Unknown · 29 lines · 21 code · 8 blank · 0 comment · 0 complexity · b715396181e21575c8cff26cbc2e33d5 MD5 · raw file

  1. #summary @version
  2. == The @version Tag ==
  3. The `@version` tag allows you to mark documented code with a version number or information about the version.
  4. === Syntax ===
  5. {{{
  6. @version versionDescription
  7. }}}
  8. * versionDescription - Required: a description of what version this code is
  9. === Example ===
  10. {{{
  11. /**
  12. * @class
  13. * @version 2001 beta release
  14. */
  15. function Hal() {
  16. this.sing = function(song) {
  17. }
  18. }
  19. }}}
  20. === See Also ===
  21. * The [TagSince @since] tag.