Skip to content

Commit e7db719

Browse files
authored
Update JSON snippets in examples
1 parent 9237b5b commit e7db719

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/spfx/dynamic-data.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ The `getPropertyDefinitions()` method returns an array of types of data that the
123123
> {
124124
> "date": "2018-06-01T11:21:59.446Z",
125125
> "name": "Tampa Home Show",
126-
> "organizerEmail": "Grady Archie",
127-
> "organizerName": "[email protected]"
126+
> "organizerEmail": "[email protected]",
127+
> "organizerName": "Grady Archie"
128128
> }
129129
> ```
130130
>
@@ -135,20 +135,20 @@ The `getPropertyDefinitions()` method returns an array of types of data that the
135135
> "date": "2018-06-01T11:21:59.446Z",
136136
> "name": "Tampa Home Show",
137137
> "organizer": {
138-
> "email": "Grady Archie",
139-
> "name": "[email protected]"
138+
> "email": "[email protected]",
139+
> "name": "Grady Archie"
140140
> }
141141
> }
142142
> ```
143143
>
144-
> ...would be serialization to the following:
144+
> ...would be serialized to the following:
145145
>
146146
> ```json
147147
> {
148148
> "date": "2018-06-01T11:21:59.446Z",
149149
> "name": "Tampa Home Show",
150-
> "organizer.email": "Grady Archie",
151-
> "organizer.name": "[email protected]"
150+
> "organizer.email": "[email protected]",
151+
> "organizer.name": "Grady Archie"
152152
> }
153153
> ```
154154
@@ -332,7 +332,7 @@ The SharePoint Framework includes a user experience (UX) for connecting two web
332332

333333
### Define dynamic web part properties
334334

335-
Each web part property, for which the data can be retrieved from a dynamic data source, should be defined as `DynamicProperty<T>` where the `T` type denotes the type of data stored in the property, for example:
335+
Each web part property, for which the data can be retrieved from a dynamic data source, should be defined as `DynamicProperty<T>` where `T` denotes the type of data stored in the property, for example:
336336

337337
```typescript
338338
/**

0 commit comments

Comments
 (0)