Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mediapipe/framework/tool/switch/packet_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class PacketProducer {
public:
virtual ~PacketProducer() = default;

// Connects a consumer to recieve packets from this producer.
// Connects a consumer to receive packets from this producer.
virtual void SetConsumer(PacketConsumer* consumer) = 0;
};

Expand All @@ -61,7 +61,7 @@ class SidePacketProducer {
public:
virtual ~SidePacketProducer() = default;

// Connects a consumer to recieve packets from this producer.
// Connects a consumer to receive packets from this producer.
virtual void SetSideConsumer(SidePacketConsumer* consumer) = 0;
};

Expand Down