From a15660993df065308a3fd39d391aa37ece315966 Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Mon, 12 Jun 2017 10:54:22 -0700 Subject: [PATCH] Fix comment --- libraries/networking/src/ReceivedPacketProcessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/networking/src/ReceivedPacketProcessor.h b/libraries/networking/src/ReceivedPacketProcessor.h index 4e4a3d1d11..5b54d4f309 100644 --- a/libraries/networking/src/ReceivedPacketProcessor.h +++ b/libraries/networking/src/ReceivedPacketProcessor.h @@ -65,7 +65,7 @@ protected: /// Implements generic processing behavior for this thread. virtual bool process() override; - /// Determines the timeout of the wait when there are no packets to process. Default value means no timeout + /// Determines the timeout of the wait when there are no packets to process. Default value is 100ms to allow for regular event processing. virtual unsigned long getMaxWait() const { return MAX_WAIT_TIME; } /// Override to do work before the packets processing loop. Default does nothing.