From c52ef80f4e3b085f18f2f50511ea9df6768e1452 Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Thu, 30 Jan 2020 19:33:28 -0800 Subject: [PATCH] [netif] fix typos in comments (#4520) --- src/core/net/netif.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/net/netif.cpp b/src/core/net/netif.cpp index 0d6990511..d401d7763 100644 --- a/src/core/net/netif.cpp +++ b/src/core/net/netif.cpp @@ -70,12 +70,12 @@ const otNetifMulticastAddress Netif::kLinkLocalAllNodesMulticastAddress = { {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01}}}, &Netif::kRealmLocalAllNodesMulticastAddress}; -// "ff03:02" +// "ff03::02" const otNetifMulticastAddress Netif::kRealmLocalAllRoutersMulticastAddress = { {{{0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02}}}, &Netif::kLinkLocalAllNodesMulticastAddress}; -// "ff02:02" +// "ff02::02" const otNetifMulticastAddress Netif::kLinkLocalAllRoutersMulticastAddress = { {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02}}}, &Netif::kRealmLocalAllRoutersMulticastAddress};