Be more civil in comments
authorPyry Haulos <phaulos@google.com>
Mon, 26 Sep 2016 22:28:57 +0000 (15:28 -0700)
committerPyry Haulos <phaulos@google.com>
Mon, 26 Sep 2016 22:28:57 +0000 (15:28 -0700)
Change-Id: I47d75f6d558a80263d4a3cdeaa84f780db02403a

executor/xeContainerFormatParser.cpp
executor/xeTestLogWriter.cpp
framework/delibs/deutil/deProcess.c

index a02d8b8..39deeb8 100644 (file)
@@ -265,7 +265,7 @@ void ContainerFormatParser::parseContainerLine (void)
                        {
                                m_value.clear();
 
-                               // \note Candy produces timestamps in very stupid fashion.
+                               // \note Candy produces unescaped timestamps.
                                for (;;)
                                {
                                        const int       curChar = offset < m_elementLen ? getChar(offset) : 0;
index bcb33fd..89848c0 100644 (file)
@@ -81,7 +81,7 @@ static void writeSessionInfo (const SessionInfo& info, std::ostream& stream)
        if (!info.resultName.empty())
                stream << "#sessionInfo resultName " << ContainerValue(info.resultName) << "\n";
 
-       // \note Current format uses unescaped timestamps for some stupid reason.
+       // \note Current format uses unescaped timestamps for some strange reason.
        if (!info.timestamp.empty())
                stream << "#sessionInfo timestamp " << info.timestamp << "\n";
 }
index 2962a1a..3087ca0 100644 (file)
@@ -401,7 +401,7 @@ deBool deProcess_waitForFinish (deProcess* process)
                return DE_FALSE;
        }
 
-       /* \note [pyry] Crazy hack for OS X Lion. Stupid Apple. */
+       /* \note [pyry] HACK, apparently needed by some versions of OS X. */
        while ((waitResult = waitpid(process->pid, &status, 0)) != process->pid)
                if (errno != ENOENT) break;