doc(Visibility): fix inline docs

This commit is contained in:
Victor Berchet 2015-06-02 19:17:12 +02:00
parent a50b8a2694
commit 31a3a19dac
1 changed files with 5 additions and 4 deletions

View File

@ -108,8 +108,9 @@ export class Parent extends Visibility {
* Specifies that an injector should retrieve a dependency from any ancestor element within the same * Specifies that an injector should retrieve a dependency from any ancestor element within the same
* shadow boundary. * shadow boundary.
* *
* An ancestor is any element between the parent element and shadow root. * An ancestor is any element between the parent element and the shadow root.
* *
* Use {@link Unbounded} if you need to cross upper shadow boundaries.
* *
* ## Example * ## Example
* *
@ -166,10 +167,10 @@ export class Ancestor extends Visibility {
} }
/** /**
* Specifies that an injector should retrieve a dependency from any ancestor element. * Specifies that an injector should retrieve a dependency from any ancestor element, crossing
* * component boundaries.
* An ancestor is any element between the parent element and shadow root.
* *
* Use {@link Ancestor} to look for ancestors within the current shadow boundary only.
* *
* ## Example * ## Example
* *