From a3c35136d7c17ab8dd8c92be1dfa62a0629bda83 Mon Sep 17 00:00:00 2001 From: Sam Yates <halfflat@gmail.com> Date: Wed, 29 Jun 2016 12:55:50 +0200 Subject: [PATCH] Fix ytpo in coment --- src/util/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/debug.cpp b/src/util/debug.cpp index a15ef5c6..2dd83f56 100644 --- a/src/util/debug.cpp +++ b/src/util/debug.cpp @@ -7,7 +7,7 @@ bool nest::mc::util::failed_assertion(const char *assertion, const char *file, int line, const char *func) { // Explicit flush, as we can't assume default buffering semantics on stderr/cerr, - // and abort() mignt not flush streams. + // and abort() might not flush streams. std::cerr << file << ':' << line << " " << func << ": Assertion `" << assertion << "' failed." << std::endl; -- GitLab