I was reading lazy propagation on GFG and it says following for range update
For example consider the node with value 27 in above diagram, this node stores sum of values at indexes from 3 to 5. If our update query is for range 2 to 5, then we need to update this node and all descendants of this node Segment Tree Diagram
I don't understand if the range is 2 to 5 why are we supposed to update only 27 and not other nodes which also contain index = 2 in their ranges