# HG changeset patch # User František Kučera # Date 1638051316 -3600 # Node ID 71114e5a0b6e682e7833a1b43357c96821fdb1aa # Parent 5043b0de5a31d39be2e0491ff2fac3c071b90da5 exception: fix typo: getMessge() → getMessage() diff -r 5043b0de5a31 -r 71114e5a0b6e include/relpipe/common/RelpipeException.h --- a/include/relpipe/common/RelpipeException.h Sat Oct 24 00:08:17 2020 +0200 +++ b/include/relpipe/common/RelpipeException.h Sat Nov 27 23:15:16 2021 +0100 @@ -45,7 +45,7 @@ public: RelpipeException(std::string message); virtual ~RelpipeException(); - virtual std::string getMessge(); + virtual std::string getMessage(); }; }