I think you are pretty close to the answer.
LR(1) means:
Parsing from left to right needs only one token to look-ahead for the context
where as LR(infinity),
whereas LR(infinity) means an infinite look-ahead. That is, the parser would have to know everything that was coming in order to figure out where it is now.
