I'm looking at the following simple grammar and its accompanying table:
S-> aSbT | epsilon
T-> bFaF | epsilon
F-> epsilon
nonterminal first set follow set
S a b
T b b
F ∅ a b
Could someone please explain why b, but not a, is in the follow set of T?