From ccd5777307d5317ed3c61c66a64cddd11d5215f6 Mon Sep 17 00:00:00 2001
From: shrig94 The @augments or @extends tag marks a symbol as augmenting another symbol. While current versions of JavaScript don't allow classes or subclasses in the same way that class-based languages like Java do, many programmers choose to
think of their code structure in these terms. For this purpose JSDoc provides the @class and @extends tags. If you wish to express a similar relationship between
- two symbols, but don't wish to promote the classical analogy, you can use the @contructor and @augments tags instead.JSDoc Examples
Contribute
diff --git a/tags-augments.html b/tags-augments.html
index 19cff91f..4ba256bd 100644
--- a/tags-augments.html
+++ b/tags-augments.html
@@ -51,7 +51,7 @@
Overview
In the example below I wish to document the fact that Ducks are a specialised form of Animal: meaning that Duck instances are like Animal instances which have been augmented with additional properties.