Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit bb20029

Browse files
committed
fix(operators): update description indentation
1 parent 17b4b17 commit bb20029

File tree

1 file changed

+9
-6
lines changed
  • src/operator-docs/transformation

1 file changed

+9
-6
lines changed

src/operator-docs/transformation/pluck.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ export const pluck: OperatorDoc = {
1010
name: 'properties',
1111
type: '...string',
1212
attribute: '',
13-
description: `The nested properties to 'pluck' from each source value (an object).`
13+
description: `
14+
The nested properties to 'pluck' from each source value (an object).
15+
`
1416
}
1517
],
1618
shortDescription: {
@@ -20,18 +22,19 @@ export const pluck: OperatorDoc = {
2022
{
2123
type: 'Tip',
2224
text: `
23-
Like <a href="#/operators/map" class="markdown-code">map</a>, but meant only for picking
24-
one of the nested properties of every emitted object.
25+
Like <a href="#/operators/map" class="markdown-code">map</a>, but meant
26+
only for picking one of the nested properties of every emitted object.
2527
`
2628
}
2729
]
2830
},
2931
walkthrough: {
3032
description: `
3133
<p>
32-
Given a list of strings describing a path to an object property, retrieves the value of a specified
33-
nested property from all values in the source Observable. If a property can't be resolved, it will
34-
return <span class="markdown-code">undefined</span> for that value.
34+
Given a list of strings describing a path to an object property, retrieves
35+
the value of a specified nested property from all values in the source Observable.
36+
If a property can't be resolved, it will return <span class="markdown-code">undefined</span>
37+
for that value.
3538
</p>
3639
`
3740
},

0 commit comments

Comments
 (0)