A couple very minor typos
Change-Id: Ib82ea9d54179faec8ebbdb7be2b74c2bf0734e29
diff --git a/aos/flatbuffers.h b/aos/flatbuffers.h
index 392a7eb..da11edf 100644
--- a/aos/flatbuffers.h
+++ b/aos/flatbuffers.h
@@ -141,7 +141,7 @@
std::string(reinterpret_cast<const char *>(other.data()), other.size());
}
- // Coppies the data from the other flatbuffer.
+ // Copies the data from the other flatbuffer.
FlatbufferString &operator=(const Flatbuffer<T> &other) {
data_ = std::string(other.data(), other.size());
return *this;
diff --git a/aos/network/message_bridge_client_lib.cc b/aos/network/message_bridge_client_lib.cc
index b371181..5856faf 100644
--- a/aos/network/message_bridge_client_lib.cc
+++ b/aos/network/message_bridge_client_lib.cc
@@ -128,7 +128,7 @@
if (configuration::ChannelIsSendableOnNode(channel, remote_node_) &&
configuration::ChannelIsReadableOnNode(channel, event_loop_->node())) {
- LOG(INFO) << "Reeiving channel "
+ LOG(INFO) << "Receiving channel "
<< configuration::CleanedChannelToString(channel);
max_size = std::max(channel->max_size(), max_size);
}