Concurrent execution of chains

I am new to Gatling,

If I compose some chain builders in the following scenario:

val scn = scenario("Scenario Name").exec(Search.search, Browse.browse, Edit.edit)

Will they be executed in parallel ? or the three of them will be executed sequentially ?

Thanks!

Sergio