The Redux store doesn't care what the actual text of the action.type field is. However, your own code will lookat action.type to see if an update is needed. Also, you will frequently look at action type strings in the ReduxDevTools Extension while debugging to see what's going on in your app. So, try to choose action types that arereadable and clearly describe what's happening - it'll be much easier to understand things when you look at them later!