Skip to content

Commit 916c948

Browse files
suramamsuramam
authored andcommitted
bug fixes
1 parent fa63ba8 commit 916c948

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+437
-435
lines changed

reference/spfx/es6-collections/foreachable.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616

1717
| Method | Returns | Description|
1818
|:-------------|:-------|:-----------|
19-
|[`forEach`](#foreach) | `void` | |
19+
|[`forEach(callbackfn)`](#foreachcallbackfn) | `void` | |
2020

2121

2222

2323

24-
### forEach
24+
### forEach(callbackfn)
2525

2626

2727

28-
**Signature:** ``forEach(callbackfn: (value: T) => void): void``
28+
**Signature:** _forEach(callbackfn: (value: T) => void): void_
2929

3030
**Returns**: `void`
3131

reference/spfx/es6-collections/iterator.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616

1717
| Method | Returns | Description|
1818
|:-------------|:-------|:-----------|
19-
|[`next`](#next) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
20-
|[`return`](#return) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
21-
|[`throw`](#throw) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
19+
|[`next(value)`](#nextvalue) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
20+
|[`return(value)`](#returnvalue) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
21+
|[`throw(e)`](#throwe) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
2222

2323

2424

2525

26-
### next
26+
### next(value)
2727

2828

2929

30-
**Signature:** ``next(value?: any): IteratorResult<T>``
30+
**Signature:** _next(value?: any): [IteratorResult](../es6-collections/iteratorresult.md)<T>_
3131

3232
**Returns**: [`IteratorResult<T>`](../es6-collections/iteratorresult.md)
3333

@@ -41,11 +41,11 @@
4141
| `value` | `any` | _Optional._ |
4242

4343

44-
### return
44+
### return(value)
4545

4646

4747

48-
**Signature:** ``return?(value?: any): IteratorResult<T>``
48+
**Signature:** _return?(value?: any): [IteratorResult](../es6-collections/iteratorresult.md)<T>_
4949

5050
**Returns**: [`IteratorResult<T>`](../es6-collections/iteratorresult.md)
5151

@@ -59,11 +59,11 @@
5959
| `value` | `any` | _Optional._ |
6060

6161

62-
### throw
62+
### throw(e)
6363

6464

6565

66-
**Signature:** ``throw?(e?: any): IteratorResult<T>``
66+
**Signature:** _throw?(e?: any): [IteratorResult](../es6-collections/iteratorresult.md)<T>_
6767

6868
**Returns**: [`IteratorResult<T>`](../es6-collections/iteratorresult.md)
6969

reference/spfx/es6-collections/map.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@
2222

2323
| Method | Returns | Description|
2424
|:-------------|:-------|:-----------|
25-
|[`clear`](#clear) | `void` | |
26-
|[`delete`](#delete) | `boolean` | |
27-
|[`forEach`](#foreach) | `void` | |
28-
|[`get`](#get) | `V` | |
29-
|[`has`](#has) | `boolean` | |
30-
|[`set`](#set) | [`Map<K,V>`](../es6-collections/map.md) | |
31-
|[`entries`](#entries) | [`Iterator<[K,V]>`](../es6-collections/iterator.md) | |
32-
|[`keys`](#keys) | [`Iterator<K>`](../es6-collections/iterator.md) | |
33-
|[`values`](#values) | [`Iterator<V>`](../es6-collections/iterator.md) | |
25+
|[`clear()`](#clear) | `void` | |
26+
|[`delete(key)`](#deletekey) | `boolean` | |
27+
|[`forEach(callbackfn,thisArg)`](#foreachcallbackfnthisarg) | `void` | |
28+
|[`get(key)`](#getkey) | `V` | |
29+
|[`has(key)`](#haskey) | `boolean` | |
30+
|[`set(key,value)`](#setkeyvalue) | [`Map<K,V>`](../es6-collections/map.md) | |
31+
|[`entries()`](#entries) | [`Iterator<[K,V]>`](../es6-collections/iterator.md) | |
32+
|[`keys()`](#keys) | [`Iterator<K>`](../es6-collections/iterator.md) | |
33+
|[`values()`](#values) | [`Iterator<V>`](../es6-collections/iterator.md) | |
3434

3535

3636

3737

38-
### clear
38+
### clear()
3939

4040

4141

42-
**Signature:** ``clear(): void``
42+
**Signature:** _clear(): void_
4343

4444
**Returns**: `void`
4545

@@ -49,11 +49,11 @@
4949
None
5050

5151

52-
### delete
52+
### delete(key)
5353

5454

5555

56-
**Signature:** ``delete(key: K): boolean``
56+
**Signature:** _delete(key: K): boolean_
5757

5858
**Returns**: `boolean`
5959

@@ -67,11 +67,11 @@ None
6767
| `key` | `K` | |
6868

6969

70-
### forEach
70+
### forEach(callbackfn,thisArg)
7171

7272

7373

74-
**Signature:** ``forEach(callbackfn: (value: V,index: K,map: Map<K,V>) => void,thisArg?: any): void``
74+
**Signature:** _forEach(callbackfn: (value: V,index: K,map: [Map](../es6-collections/map.md)<K,V>) => void,thisArg?: any): void_
7575

7676
**Returns**: `void`
7777

@@ -86,11 +86,11 @@ None
8686
| `thisArg` | `any` | _Optional._ |
8787

8888

89-
### get
89+
### get(key)
9090

9191

9292

93-
**Signature:** ``get(key: K): V``
93+
**Signature:** _get(key: K): V_
9494

9595
**Returns**: `V`
9696

@@ -104,11 +104,11 @@ None
104104
| `key` | `K` | |
105105

106106

107-
### has
107+
### has(key)
108108

109109

110110

111-
**Signature:** ``has(key: K): boolean``
111+
**Signature:** _has(key: K): boolean_
112112

113113
**Returns**: `boolean`
114114

@@ -122,11 +122,11 @@ None
122122
| `key` | `K` | |
123123

124124

125-
### set
125+
### set(key,value)
126126

127127

128128

129-
**Signature:** ``set(key: K,value?: V): Map<K,V>``
129+
**Signature:** _set(key: K,value?: V): [Map](../es6-collections/map.md)<K,V>_
130130

131131
**Returns**: [`Map<K,V>`](../es6-collections/map.md)
132132

@@ -141,11 +141,11 @@ None
141141
| `value` | `V` | _Optional._ |
142142

143143

144-
### entries
144+
### entries()
145145

146146

147147

148-
**Signature:** ``entries(): Iterator<[K,V]>``
148+
**Signature:** _entries(): [Iterator](../es6-collections/iterator.md)<[K,V]>_
149149

150150
**Returns**: [`Iterator<[K,V]>`](../es6-collections/iterator.md)
151151

@@ -155,11 +155,11 @@ None
155155
None
156156

157157

158-
### keys
158+
### keys()
159159

160160

161161

162-
**Signature:** ``keys(): Iterator<K>``
162+
**Signature:** _keys(): [Iterator](../es6-collections/iterator.md)<K>_
163163

164164
**Returns**: [`Iterator<K>`](../es6-collections/iterator.md)
165165

@@ -169,11 +169,11 @@ None
169169
None
170170

171171

172-
### values
172+
### values()
173173

174174

175175

176-
**Signature:** ``values(): Iterator<V>``
176+
**Signature:** _values(): [Iterator](../es6-collections/iterator.md)<V>_
177177

178178
**Returns**: [`Iterator<V>`](../es6-collections/iterator.md)
179179

reference/spfx/es6-collections/mapconstructor.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222

2323
| Method | Returns | Description|
2424
|:-------------|:-------|:-----------|
25-
|[`constructor<K,V>`](#constructor<k,v>) | [`Map<K,V>`](../es6-collections/map.md) | |
26-
|[`constructor<K,V>`](#constructor<k,v>) | [`Map<K,V>`](../es6-collections/map.md) | |
25+
|[`constructor<K,V>()`](#constructor<kv>) | [`Map<K,V>`](../es6-collections/map.md) | |
26+
|[`constructor<K,V>(iterable)`](#constructor<kv>iterable) | [`Map<K,V>`](../es6-collections/map.md) | |
2727

2828

2929

3030

31-
### constructor<K,V>
31+
### constructor<K,V>()
3232

3333

3434

35-
**Signature:** ``new<K,V>(): Map<K,V>``
35+
**Signature:** _new<K,V>(): [Map](../es6-collections/map.md)<K,V>_
3636

3737
**Returns**: [`Map<K,V>`](../es6-collections/map.md)
3838

@@ -42,11 +42,11 @@
4242
None
4343

4444

45-
### constructor<K,V>
45+
### constructor<K,V>(iterable)
4646

4747

4848

49-
**Signature:** ``new<K,V>(iterable: ForEachable<[K,V]>): Map<K,V>``
49+
**Signature:** _new<K,V>(iterable: [ForEachable](../es6-collections/foreachable.md)<[K,V]>): [Map](../es6-collections/map.md)<K,V>_
5050

5151
**Returns**: [`Map<K,V>`](../es6-collections/map.md)
5252

reference/spfx/es6-collections/set.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@
2222

2323
| Method | Returns | Description|
2424
|:-------------|:-------|:-----------|
25-
|[`add`](#add) | [`Set<T>`](../es6-collections/set.md) | |
26-
|[`clear`](#clear) | `void` | |
27-
|[`delete`](#delete) | `boolean` | |
28-
|[`forEach`](#foreach) | `void` | |
29-
|[`has`](#has) | `boolean` | |
30-
|[`entries`](#entries) | [`Iterator<[T,T]>`](../es6-collections/iterator.md) | |
31-
|[`keys`](#keys) | [`Iterator<T>`](../es6-collections/iterator.md) | |
32-
|[`values`](#values) | [`Iterator<T>`](../es6-collections/iterator.md) | |
25+
|[`add(value)`](#addvalue) | [`Set<T>`](../es6-collections/set.md) | |
26+
|[`clear()`](#clear) | `void` | |
27+
|[`delete(value)`](#deletevalue) | `boolean` | |
28+
|[`forEach(callbackfn,thisArg)`](#foreachcallbackfnthisarg) | `void` | |
29+
|[`has(value)`](#hasvalue) | `boolean` | |
30+
|[`entries()`](#entries) | [`Iterator<[T,T]>`](../es6-collections/iterator.md) | |
31+
|[`keys()`](#keys) | [`Iterator<T>`](../es6-collections/iterator.md) | |
32+
|[`values()`](#values) | [`Iterator<T>`](../es6-collections/iterator.md) | |
3333

3434

3535

3636

37-
### add
37+
### add(value)
3838

3939

4040

41-
**Signature:** ``add(value: T): Set<T>``
41+
**Signature:** _add(value: T): [Set](../es6-collections/set.md)<T>_
4242

4343
**Returns**: [`Set<T>`](../es6-collections/set.md)
4444

@@ -52,11 +52,11 @@
5252
| `value` | `T` | |
5353

5454

55-
### clear
55+
### clear()
5656

5757

5858

59-
**Signature:** ``clear(): void``
59+
**Signature:** _clear(): void_
6060

6161
**Returns**: `void`
6262

@@ -66,11 +66,11 @@
6666
None
6767

6868

69-
### delete
69+
### delete(value)
7070

7171

7272

73-
**Signature:** ``delete(value: T): boolean``
73+
**Signature:** _delete(value: T): boolean_
7474

7575
**Returns**: `boolean`
7676

@@ -84,11 +84,11 @@ None
8484
| `value` | `T` | |
8585

8686

87-
### forEach
87+
### forEach(callbackfn,thisArg)
8888

8989

9090

91-
**Signature:** ``forEach(callbackfn: (value: T,index: T,set: Set<T>) => void,thisArg?: any): void``
91+
**Signature:** _forEach(callbackfn: (value: T,index: T,set: [Set](../es6-collections/set.md)<T>) => void,thisArg?: any): void_
9292

9393
**Returns**: `void`
9494

@@ -103,11 +103,11 @@ None
103103
| `thisArg` | `any` | _Optional._ |
104104

105105

106-
### has
106+
### has(value)
107107

108108

109109

110-
**Signature:** ``has(value: T): boolean``
110+
**Signature:** _has(value: T): boolean_
111111

112112
**Returns**: `boolean`
113113

@@ -121,11 +121,11 @@ None
121121
| `value` | `T` | |
122122

123123

124-
### entries
124+
### entries()
125125

126126

127127

128-
**Signature:** ``entries(): Iterator<[T,T]>``
128+
**Signature:** _entries(): [Iterator](../es6-collections/iterator.md)<[T,T]>_
129129

130130
**Returns**: [`Iterator<[T,T]>`](../es6-collections/iterator.md)
131131

@@ -135,11 +135,11 @@ None
135135
None
136136

137137

138-
### keys
138+
### keys()
139139

140140

141141

142-
**Signature:** ``keys(): Iterator<T>``
142+
**Signature:** _keys(): [Iterator](../es6-collections/iterator.md)<T>_
143143

144144
**Returns**: [`Iterator<T>`](../es6-collections/iterator.md)
145145

@@ -149,11 +149,11 @@ None
149149
None
150150

151151

152-
### values
152+
### values()
153153

154154

155155

156-
**Signature:** ``values(): Iterator<T>``
156+
**Signature:** _values(): [Iterator](../es6-collections/iterator.md)<T>_
157157

158158
**Returns**: [`Iterator<T>`](../es6-collections/iterator.md)
159159

0 commit comments

Comments
 (0)