I just found this:
sed \'/label/{n;n;s/{}/{some comment}/;}\'
The intended effect is to seek label, proceed 2 lines down (
Curly brackets allow to group several commands so that they are executed for the same address range (reference). The thing here is that you specify an address (with one or two line numbers or patterns) and then apply a group of commands to matching lines.
The n command is nothing special, and it's documented in man, as well as in the linked document. I'm not sure if there's a general name for it.
From man sed:
n N Read/append the next line of input into the pattern space.