Naming convention for executable effects (actions vs actuals)

Is there a convention to name effects that are ready to be executed (e.g. after being provided with requirements) for "actions" or "actuals"?
I'm certain I've read something like that somewhere among all the articles or videos I've watched but I'm unsure 😄

const getUsersAction = Effect.provide(getUsers, context) or const getUsersActual = Effect.provide(getUsers, context).
Was this page helpful?