From bbef92c17d18c89235ef4c067fe2a4ed14e9df41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florin=20P=C4=83=C8=9Ban?= Date: Mon, 23 Jan 2017 21:40:50 +0000 Subject: [PATCH] Reword comment so that code editors can mark deprecation correctly (#4147) --- go/table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/table.go b/go/table.go index 01d3db122..b273146fa 100644 --- a/go/table.go +++ b/go/table.go @@ -10,7 +10,7 @@ type Table struct { // Offset provides access into the Table's vtable. // -// Deprecated fields are ignored by checking against the vtable's length. +// Fields which are deprecated are ignored by checking against the vtable's length. func (t *Table) Offset(vtableOffset VOffsetT) VOffsetT { vtable := UOffsetT(SOffsetT(t.Pos) - t.GetSOffsetT(t.Pos)) if vtableOffset < t.GetVOffsetT(vtable) {