Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

docs(style-guide): a few fixes #3534

Merged
merged 1 commit into from
Apr 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions public/docs/ts/latest/guide/style-guide.jade
Original file line number Diff line number Diff line change
Expand Up @@ -1371,9 +1371,9 @@ a(href="#toc") Back to top
**Consider** using the name SharedModule when the contents of a shared
module are referenced across the entire application.

.s-rule.do
.s-rule.avoid
:marked
**Do** not provide services in shared modules. Services are usually
**Avoid** providing services in shared modules. Services are usually
singletons that are provided once for the entire application or
in a particular feature module.

Expand Down Expand Up @@ -1785,7 +1785,7 @@ a(href="#toc") Back to top
**Do** use the `@Input()` and `@Output()` class decorators instead of the `inputs` and `outputs` properties of the
`@Directive` and `@Component` metadata:

.s-rule.do
.s-rule.consider
:marked
**Consider** placing `@Input()` or `@Output()` on the same line as the property it decorates.

Expand Down