From 01098f41d05010918b46fa6f49831465a74152a7 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 25 Sep 2020 12:24:44 -0700 Subject: [PATCH] wgengine/tstun: fix typo in comment --- wgengine/tstun/tun.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgengine/tstun/tun.go b/wgengine/tstun/tun.go index 59573acc7..77ebc52c4 100644 --- a/wgengine/tstun/tun.go +++ b/wgengine/tstun/tun.go @@ -376,7 +376,7 @@ func (t *TUN) InjectInboundDirect(buf []byte, offset int) error { } // InjectInboundCopy takes a packet without leading space, -// reallocates it to conform to the InjectInbondDirect interface +// reallocates it to conform to the InjectInboundDirect interface // and calls InjectInboundDirect on it. Injecting a nil packet is a no-op. func (t *TUN) InjectInboundCopy(packet []byte) error { // We duplicate this check from InjectInboundDirect here