Suppose you have a very long code in which many new functions are created. For efficient programming, very short and easily iterated function names are preferred.
For example,
runningFast[x_]:=x^2 can be named as
rf[x_]:=x^2 Obviously, the latter function rf[] is preferable in such example as:
k[y_]:=rf[x]^3+Sqrt[rf[x]]+Log[rf[x]]+... because it is easy to write. However, if I come back to the same function later on, I might not remember what rf[x] does.
Question
Given a notebook, is there any way to keep track the function names with some explanatory note so that I can recall the names at will?