Skip to content

Commit b6b4484

Browse files
Address comments
1 parent 3a79a7a commit b6b4484

2 files changed

Lines changed: 7 additions & 15 deletions

File tree

CONTRIBUTORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
- Add ParameterWatcher for real-time parameter monitoring
4747
- Enhance Message Validation
4848
- Add TypeScript definitions and non-throwing variants for validator
49-
- add MessageIntrospector for message schema inspection
49+
- Add MessageIntrospector for message schema inspection
5050

5151
- **[Martins Mozeiko](https://github.com/martins-mozeiko)**
5252
- QoS new/delete fix

example/message-introspector/README.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,12 @@ node message-introspector-example.js
1919
### Expected Output
2020

2121
```
22-
Type: geometry_msgs/msg/Twist
23-
Fields: [ 'linear', 'angular' ]
24-
Defaults: {
25-
"linear": {
26-
"x": 0,
27-
"y": 0,
28-
"z": 0
29-
},
30-
"angular": {
31-
"x": 0,
32-
"y": 0,
33-
"z": 0
34-
}
35-
}
22+
Twist fields: [ 'linear', 'angular' ]
23+
Twist defaults: { linear: { x: 0, y: 0, z: 0 }, angular: { x: 0, y: 0, z: 0 } }
24+
String fields: [ 'data' ]
25+
String defaults: { data: '' }
26+
JointState fields: [ 'header', 'name', 'position', 'velocity', 'effort' ]
27+
Twist schema msgName: Twist
3628
```
3729

3830
## API

0 commit comments

Comments
 (0)