Skip to content

Commit

Permalink
fix API documentation for readProperty (#1345)
Browse files Browse the repository at this point in the history
  • Loading branch information
BinkertR authored Mar 5, 2025
1 parent 6cbbdb3 commit 39508bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ Here we use the await functionality of Node.js.

```javascript
let read1 = await thing.readProperty("count");
console.info("count value is", read1);
let value = await read1.value();
console.info("count value is", value);
```

##### Set the value of a Property or a set of properties
Expand Down

0 comments on commit 39508bd

Please sign in to comment.