Grammar fix (?).

This commit is contained in:
Bartosz Taudul 2018-08-08 22:11:54 +02:00
parent f9740328d2
commit 3e9d7fa3bd

View File

@ -195,7 +195,7 @@ With the aforementioned steps you will be able to connect to the profiled progra
\subsection{Handling text strings}
When dealing with Tracy macros, you will encounter two ways of providing string data for the profiler. In both cases you should pass \texttt{const char*} pointers, but there are differences in expected life-time of the pointed data.
When dealing with Tracy macros, you will encounter two ways of providing string data to the profiler. In both cases you should pass \texttt{const char*} pointers, but there are differences in expected life-time of the pointed data.
\begin{enumerate}
\item When a macro only accepts a pointer (for example: \texttt{TracyMessageL(text)}), the provided string data must be accessible at any time in program execution (\emph{this also includes the time after exiting the \texttt{main} function}). The string also cannot be changed. This basically means that the only option is to use a string literal (e.g.: \texttt{TracyMessageL("Hello")}).