Skip to content

Commit b44b750

Browse files
panjkovVesaJuvonen
authored andcommitted
Update build-a-hello-world-web-part.md (SharePoint#2874)
Typo - we refer property by its name, not by its value.
1 parent f70c8c3 commit b44b750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/spfx/web-parts/get-started/build-a-hello-world-web-part.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ This model is flexible enough so that web parts can be built in any JavaScript f
212212

213213
The property pane is defined in the **HelloWorldWebPart** class. The **getPropertyPaneConfiguration** property is where you need to define the property pane.
214214

215-
When the properties are defined, you can access them in your web part by using `this.properties.<property-value>`, as shown in the **render** method:
215+
When the properties are defined, you can access them in your web part by using `this.properties.<property-name>`, as shown in the **render** method:
216216

217217
```typescript
218218
<p class="${styles.description}">${escape(this.properties.description)}</p>

0 commit comments

Comments
 (0)