Skip to content

Commit 219b0f5

Browse files
suramamsuramam
authored andcommitted
Format update
1 parent 916c948 commit 219b0f5

18 files changed

+140
-140
lines changed

reference/spfx/es6-collections.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| Module | Description |
77
|:-------------|:---------------|
8-
| [es6-collections](./es6-collections/es6-collections-imodule.md) | |
8+
| [`es6-collections`](./es6-collections/es6-collections-imodule.md) | |
99

1010

1111

@@ -14,17 +14,17 @@
1414

1515
| Interface | Description |
1616
|:-------------|:---------------|
17-
| [IteratorResult](./es6-collections/iteratorresult.md) | |
18-
| [Iterator](./es6-collections/iterator.md) | |
19-
| [ForEachable](./es6-collections/foreachable.md) | |
20-
| [Map](./es6-collections/map.md) | |
21-
| [MapConstructor](./es6-collections/mapconstructor.md) | |
22-
| [Set](./es6-collections/set.md) | |
23-
| [SetConstructor](./es6-collections/setconstructor.md) | |
24-
| [WeakMap](./es6-collections/weakmap.md) | |
25-
| [WeakMapConstructor](./es6-collections/weakmapconstructor.md) | |
26-
| [WeakSet](./es6-collections/weakset.md) | |
27-
| [WeakSetConstructor](./es6-collections/weaksetconstructor.md) | |
17+
| [`IteratorResult`](./es6-collections/iteratorresult.md) | |
18+
| [`Iterator`](./es6-collections/iterator.md) | |
19+
| [`ForEachable`](./es6-collections/foreachable.md) | |
20+
| [`Map`](./es6-collections/map.md) | |
21+
| [`MapConstructor`](./es6-collections/mapconstructor.md) | |
22+
| [`Set`](./es6-collections/set.md) | |
23+
| [`SetConstructor`](./es6-collections/setconstructor.md) | |
24+
| [`WeakMap`](./es6-collections/weakmap.md) | |
25+
| [`WeakMapConstructor`](./es6-collections/weakmapconstructor.md) | |
26+
| [`WeakSet`](./es6-collections/weakset.md) | |
27+
| [`WeakSetConstructor`](./es6-collections/weaksetconstructor.md) | |
2828

2929

3030

@@ -35,8 +35,8 @@
3535

3636
| Variable | Type|
3737
|:-----------|:------------|
38-
|Map | [`MapConstructor`](../es6-collections/mapconstructor.md) |
39-
|Set | [`SetConstructor`](../es6-collections/setconstructor.md) |
40-
|WeakMap | [`WeakMapConstructor`](../es6-collections/weakmapconstructor.md) |
41-
|WeakSet | [`WeakSetConstructor`](../es6-collections/weaksetconstructor.md) |
38+
|`Map` | [`MapConstructor`](../es6-collections/mapconstructor.md) |
39+
|`Set` | [`SetConstructor`](../es6-collections/setconstructor.md) |
40+
|`WeakMap` | [`WeakMapConstructor`](../es6-collections/weakmapconstructor.md) |
41+
|`WeakSet` | [`WeakSetConstructor`](../es6-collections/weaksetconstructor.md) |
4242

reference/spfx/es6-promise.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55

66
| Module | Description |
77
|:-------------|:---------------|
8-
| [Promise](./es6-promise/promise-imodule.md) | |
9-
| ['es6-promise'](./es6-promise/es6-promise-imodule.md) | |
8+
| [`Promise`](./es6-promise/promise-imodule.md) | |
9+
| [`'es6-promise'`](./es6-promise/es6-promise-imodule.md) | |
1010

1111

1212

1313
## Classes
1414

1515
| Class | Description |
1616
|:-------------|:---------------|
17-
| [Promise](./es6-promise/promise.md) | |
17+
| [`Promise`](./es6-promise/promise.md) | |
1818

1919

2020

2121
## Interfaces
2222

2323
| Interface | Description |
2424
|:-------------|:---------------|
25-
| [Thenable](./es6-promise/thenable.md) | |
25+
| [`Thenable`](./es6-promise/thenable.md) | |
2626

2727

2828

reference/spfx/es6-promise/promise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you call reject your promise is rejected with the object passed to resolve.
1414
For consistency and debugging (eg stack traces), obj should be an instanceof Error.
1515
Any errors thrown in the constructor callback will be implicitly passed to reject().
1616

17-
**Signature:** constructor(callback: (resolve: (value?: R | [Thenable](../es6-promise/thenable.md)<R>) => void,reject: (error?: any) => void) => void)
17+
**Signature:** _constructor(callback: (resolve: (value?: R | [Thenable](../es6-promise/thenable.md)<R>) => void,reject: (error?: any) => void) => void)_
1818

1919
**Returns**: [`Promise`](../es6-promise/promise.md)
2020

reference/spfx/sp-client-base.md

Lines changed: 33 additions & 33 deletions
Large diffs are not rendered by default.

reference/spfx/sp-client-base/basichttpclient.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ enhancements.
1212
## Constructor
1313

1414

15-
**Signature:** constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md))
15+
**Signature:** _constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md))_
1616

1717
**Returns**: [`BasicHttpClient`](../sp-client-base/basichttpclient.md)
1818

reference/spfx/sp-client-base/httpclient.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class instead.
1515
## Constructor
1616

1717

18-
**Signature:** constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md))
18+
**Signature:** _constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md))_
1919

2020
**Returns**: [`HttpClient`](../sp-client-base/httpclient.md)
2121

reference/spfx/sp-client-base/odatabatch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resolve with a Response object for that particular request.
1919
## Constructor
2020

2121

22-
**Signature:** constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md),batchOptions?: [IODataBatchOptions](../sp-client-base/iodatabatchoptions.md))
22+
**Signature:** _constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md),batchOptions?: [IODataBatchOptions](../sp-client-base/iodatabatchoptions.md))_
2323

2424
**Returns**: [`ODataBatch`](../sp-client-base/odatabatch.md)
2525

reference/spfx/sp-client-base/pagecontext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ application cache.
1414
## Constructor
1515

1616

17-
**Signature:** constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md))
17+
**Signature:** _constructor(serviceScope: [ServiceScope](../sp-client-base/servicescope.md))_
1818

1919
**Returns**: [`PageContext`](../sp-client-base/pagecontext.md)
2020

reference/spfx/sp-client-base/servicekey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ introduced without inadvertently breaking components that are loaded by an older
1515
## Constructor
1616
PRIVATE - Do not call this from your own code.
1717

18-
**Signature:** constructor(id: string,name: string,defaultCreator: ServiceCreator<T>)
18+
**Signature:** _constructor(id: string,name: string,defaultCreator: ServiceCreator<T>)_
1919

2020
**Returns**: [`ServiceKey`](../sp-client-base/servicekey.md)
2121

reference/spfx/sp-client-base/servicescope.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ serviceScope.whenFinished().
4949
## Constructor
5050
PRIVATE CONSTRUCTOR - DO NOT CALL THIS FROM YOUR OWN CODE.
5151

52-
**Signature:** constructor(parent: [ServiceScope](../sp-client-base/servicescope.md))
52+
**Signature:** _constructor(parent: [ServiceScope](../sp-client-base/servicescope.md))_
5353

5454
**Returns**: [`ServiceScope`](../sp-client-base/servicescope.md)
5555

0 commit comments

Comments
 (0)