Check multiple roles

Greetings,

I am trying to put a field visible based on two roles. I tried the following:

1- ${security.user.isInRole("Administrador,Gestor da Entidade")} - doesn't show;
2- ${security.user.isInRole("Administrador","Gestor da Entidade")} -doesn't show;
3- ${security.user.isInRole("Administrador")} || ${security.user.isInRole("Gestor da Entidade")}- doesn't compile.

Is there any documentation on this subject?

You can use

${security.user.isInRole(["Administrador","Gestor da Entidade"])}

Thank you for the fast reply.