Skip to content

Commit e8ee8f3

Browse files
committed
fix
1 parent 1c39f1a commit e8ee8f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guides/blackboard_reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ For the sake of simplicity, we will consider further an onject that is expensive
4141

4242
The recommended port types, in this case is:
4343

44-
```cpp
44+
```cpp
4545
PortsList AcquirePointCloud::providedPorts()
4646
{
4747
return { OutputPort<std::shared_ptr<Pointcloud>>("cloud") };
4848
}
4949

50-
PortsList AcquirePointCloud::providedPorts()
50+
PortsList SegmentObject::providedPorts()
5151
{
5252
return { InputPort<std::string>("obj_name"),
5353
InputPort<std::shared_ptr<Pointcloud>>("cloud"),
54-
OutputPort<Pose3d>("obj_pose") };
54+
OutputPort<Pose3D>("obj_pose") };
5555
}
5656
```
5757

0 commit comments

Comments
 (0)