This summarizes a research paper on LZ-End compression. LZ-End is a variant of Lempel-Ziv (LZ77) compression that forces phrases to end at the end of a previous phrase. This allows arbitrary phrases to be decompressed in optimal time, while achieving compression close to LZ77. The paper introduces the LZ-End parsing and encoding, proves it is coarsely optimal like LZ77, and provides an algorithm to extract arbitrary substrings in optimal time by following phrase boundaries. It also presents a construction algorithm to build the LZ-End parsing.