It means that if you need to change the whole item list at once in the recyclerview, then use notifyDataSetChanged().
If you need to change the specific item, then it’s better to use notifyItemChanged(position) so that it won’t refresh & rebind the whole dataset which can impact the performance if the dataset is large.
So it’s just a normal suggestion or maybe a warning, nothing to worry about. 🙂