Perhaps they are trying to differentiate between use of a linear and circular linked list ?
With a linear list, you point to the start, which points to the next, etc etc, and the end points to null.
With a circular list, the end points to the start, which points to the next, etc etc... hence by pointing to the end, you often have a faster solution.
Pointing to the end of a circular linked list can be more efficient if adding to a large list.