From b27939cb27542abac6782aeadd389c3524231d38 Mon Sep 17 00:00:00 2001 From: v4hn Date: Fri, 24 Apr 2020 16:53:56 +0200 Subject: [PATCH] fix typo --- core/src/container.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/container.cpp b/core/src/container.cpp index 438976a3..a773741b 100644 --- a/core/src/container.cpp +++ b/core/src/container.cpp @@ -187,7 +187,7 @@ void ContainerBase::add(Stage::pointer&& stage) { bool ContainerBase::insert(Stage::pointer&& stage, int before) { if (!stage) { - ROS_ERROR_STREAM(name() << ": reveived invalid stage pointer"); + ROS_ERROR_STREAM(name() << ": received invalid stage pointer"); return false; }