[Tex/LaTex] Remove white space before a single chapter

book-designchaptersspacing

I've searched this sites for similar questions, but can only find answers that remove the space for every chapter, whereas I only want it removed in one chapter. The MWE is quite minimal :)

\documentclass{book}
\begin{document}
\chapter{Chapter 1}
Hello
\chapter{Chapter 2}
Bonjour
\end{document}

How can I remove the white space above only one of the chapters?

Best Answer

enter image description here

\documentclass{book}
\begin{document}
\chapter{Chapter 1}
Hello

\makeatletter
\let\savedchap\@makechapterhead
\def\@makechapterhead{\vspace*{-1cm}\savedchap}
\chapter{Chapter 2}
\let\@makechapterhead\savedchap
\makeatletter

Bonjour

\chapter{Chapter 3}

Ol\'a

\end{document}