Missing right bracket in template expansion example

Clause / Subclause / Annex: 
8.3.5
Para/Table/Figure: 
13
Comment type: 
Ed
Comment / justification for change: 

Example missing closing bracket in
template void f(T (* ...t)(int, int);

Recommended change: 

Add closing bracket like this:
template void f(T (* ...t)(int, int));

MB: 
UK