From 1ccbffc2354f1adf4f1d2558eac60e76593981d2 Mon Sep 17 00:00:00 2001 From: Nick Brown Date: Wed, 18 May 2022 11:40:17 -0700 Subject: [PATCH] Fix typo in comment PiperOrigin-RevId: 449535537 --- pkg/tcpip/network/internal/multicast/route_table.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/tcpip/network/internal/multicast/route_table.go b/pkg/tcpip/network/internal/multicast/route_table.go index e98ae2d42..125ca077b 100644 --- a/pkg/tcpip/network/internal/multicast/route_table.go +++ b/pkg/tcpip/network/internal/multicast/route_table.go @@ -298,7 +298,7 @@ func (r *RouteTable) newPendingRoute() PendingRoute { } } -// NewInstalledRoute instatiates an installed route for the table. +// NewInstalledRoute instantiates an installed route for the table. func (r *RouteTable) NewInstalledRoute(inputInterface tcpip.NICID, outgoingInterfaces []OutgoingInterface) *InstalledRoute { return &InstalledRoute{ expectedInputInterface: inputInterface, @@ -407,7 +407,7 @@ func (r *RouteTable) getOrCreatePendingRouteRLocked(key RouteKey) (PendingRoute, // // Packets that were queued while the route was in the pending state are // returned. The caller assumes ownership of these packets and is responsible -// for forwarding and relasing them. If an installed route already exists for +// for forwarding and releasing them. If an installed route already exists for // the provided key, then it is overwritten. func (r *RouteTable) AddInstalledRoute(key RouteKey, route *InstalledRoute) []*stack.PacketBuffer { r.installedMu.Lock()