Finding a string in any file with a subdirectory in linux

Nothing new or major but something that I keep forgetting.

find . -exec grep -l "string to find" {} \;

This will search all subdirectories from the current directory for the "string to find".