Skip to content

Commit c8cc271

Browse files
committed
fixup! docs: test api doc for switch directives
1 parent 7f520fa commit c8cc271

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: packages/common/src/directives/ng_switch.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ export class SwitchView {
4949
* - Elements within the `[NgSwitch]` statement but outside of any `[NgSwitchCase]`
5050
* or `[ngSwitchDefault]` directive are preserved at the location in the DOM.
5151
*
52-
* @see NgSwitchCase
53-
* @see NgSwitchDefault
52+
* @see `NgSwitchCase`
53+
* @see `NgSwitchDefault`
5454
*
5555
* @UsageNotes
5656
* Define a container element for the directive, and specify the switch expression
@@ -181,8 +181,8 @@ export class NgSwitch {
181181
* that defines the subtree to be selected if the value of the match expression
182182
* is the same as the value of the switch expression.
183183
*
184-
* @see NgSwitch
185-
* @see NgSwitchDefault
184+
* @see `NgSwitch`
185+
* @see `NgSwitchDefault`
186186
*
187187
*/
188188
@Directive({selector: '[ngSwitchCase]'})
@@ -219,8 +219,8 @@ export class NgSwitchCase implements DoCheck {
219219
* When no preceding case matches, the switch inserts the view subtree
220220
* defined in this default case into the DOM.
221221
*
222-
* @see NgSwitch
223-
* @see NgSwitchCase
222+
* @see `NgSwitch`
223+
* @see `NgSwitchCase`
224224
*
225225
*/
226226
@Directive({selector: '[ngSwitchDefault]'})

0 commit comments

Comments
 (0)