Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit a402085

Browse files
committed
Docs typo
1 parent 072e2fe commit a402085

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/array.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ aEqualsOne(item) {
354354
{{ numbers | where: 1 }} <!-- [1, 1] -->
355355
```
356356

357-
###firstordefault
357+
###firstOrDefault
358358

359359
This pipe behaves exactly like `where` but only return the first element when is found. A default value can be provided if no
360360
such element exists.
@@ -559,7 +559,7 @@ import { TakePipe } from 'angular-pipes/src/array/take.pipe';
559559
```
560560

561561

562-
####takeuntil
562+
####takeUntil
563563

564564
Take until the condition is met.
565565

@@ -581,7 +581,7 @@ function predicate (item: any) {
581581
{{ [1, 2, 3, 4] | takeUntil: predicate }} <!-- [1, 2, 3] -->
582582
```
583583

584-
####takewhile
584+
####takeWhile
585585

586586
Take while the condition is met.
587587

docs/boolean.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ import { IsNotIdenticalPipe } from 'angular-pipes/src/boolean/conditions.pipe';
167167
```
168168

169169

170-
####isnull
170+
####isNull
171171

172172
Returns true if the value if null.
173173

@@ -184,7 +184,7 @@ import { IsNullPipe } from 'angular-pipes/src/boolean/types.pipe';
184184
{{ 1 | isNull }} <!-- false -->
185185
```
186186

187-
####isundefined
187+
####isUndefined
188188

189189
Returns true if the value if undefined.
190190

@@ -201,7 +201,7 @@ import { IsUndefinedPipe } from 'angular-pipes/src/boolean/types.pipe';
201201
{{ 1 | isUndefined }} <!-- false -->
202202
```
203203

204-
####isnil
204+
####isNil
205205

206206
Returns true if the value if null or undefined.
207207

@@ -220,7 +220,7 @@ import { IsNilPipe } from 'angular-pipes/src/boolean/types.pipe';
220220
```
221221

222222

223-
####isnumber
223+
####isNumber
224224

225225
Returns true if the value is a number.
226226

@@ -237,7 +237,7 @@ import { IsNumberPipe } from 'angular-pipes/src/boolean/types.pipe';
237237
{{ 1 | isNumber }} <!-- true -->
238238
```
239239

240-
####isstring
240+
####isString
241241

242242
Returns true if the value is a string.
243243

@@ -255,7 +255,7 @@ import { IsStringPipe } from 'angular-pipes/src/boolean/types.pipe';
255255
```
256256

257257

258-
####isfunction
258+
####isFunction
259259

260260
Returns true if the value is a function.
261261

@@ -279,7 +279,7 @@ myFn() {
279279
```
280280

281281

282-
####isarray
282+
####isArray
283283

284284
Returns true if the value is an array.
285285

@@ -298,7 +298,7 @@ import { IsArrayPipe } from 'angular-pipes/src/boolean/types.pipe';
298298
```
299299

300300

301-
####isobject
301+
####isObject
302302

303303
Returns true if the value is an object.
304304

@@ -317,7 +317,7 @@ import { IsObjectPipe } from 'angular-pipes/src/boolean/types.pipe';
317317
```
318318

319319

320-
####isdefined
320+
####isDefined
321321

322322
Returns true if the value is defined (nor null nor undefined).
323323

0 commit comments

Comments
 (0)