According to the documentation of memoir, chapter 8.4.1, the command \linenottooshort is supposed to make sure that the last line of a paragraph will not be shorter than an optional length (default 2em). So I expect the command to help me reduce the number of paragraphs that has short last lines.
However, the first MWE (without \linenottooshort) gives the result on the left in the figure below, while the second MWE (with \linenottooshort) gives the result on the right, which is clearly worse regarding short last lines.
I'm guessing that the text in the last line of the example on the right might not be shorter than 2em. But surely \linenottooshort ought not to make paragraphs worse than they would be without it? What's going on here?
Left:
\documentclass[11pt]{memoir}
\setlength{\textwidth}{120mm}
\setlength{\parindent}{0mm}
\usepackage{blindtext}
\begin{document}
\blindtext
\end{document}
Right:
\documentclass[11pt]{memoir}
\setlength{\textwidth}{120mm}
\setlength{\parindent}{0mm}
\usepackage{blindtext}
\linenottooshort
\begin{document}
\blindtext
\end{document}
