summaryrefslogtreecommitdiffhomepage
path: root/source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-13 12:14:49 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-13 12:14:49 +0100
commite55071cfaeca3c998d9829a5a0f19eb9d08dc74a (patch)
tree2a4b162cacd7c3af67533ba3977ffdd1e30b24cc /source
parent8c54e49127ed505d56227059f97ad3c60befb8cd (diff)
chore: better phrasing and typo fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'source')
-rw-r--r--source/wg01/wg01.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/wg01/wg01.tex b/source/wg01/wg01.tex
index d76d838..2a179bb 100644
--- a/source/wg01/wg01.tex
+++ b/source/wg01/wg01.tex
@@ -46,7 +46,7 @@
\section{Introduction.}
{
Many Operating Systems Kernels have been shipped using the C programming language.\\
-And some of them like EKA2 uses the C++ programming language. Although notoriously difficult, one may still adapt to those constraints in order to deliver one such operating system kernel.
+And some of them like EKA2 use the C++ programming language. Although notoriously difficult, one may still adapt to those constraints in order to deliver one such operating system kernel.
That is the reason that most production-grade kernels (Linux, XNU, and NT) are mostly written in C. With a higher-level subset in C++.
However, when correctly applying C++ principles to kernel development, one makes the development much more easier to pull off.
}
@@ -166,7 +166,7 @@ and we'd do that by following the Prong on Inheritance:
TTPI is a thought exercise used to decide whether you should consider using C++ in a kernel. Consider the following thought exercise:
\begin{itemize}
-\item[1:] Is this a feature that can be implementation with other similar protocols/concepts?
+\item[1:] Is this a feature that can be implemented with other similar protocols/concepts?
\item[2:] Is this doable without too much trade-off costs?
\item[3:] Is this doable without V-Tables?
\end{itemize}
@@ -174,7 +174,7 @@ TTPI is a thought exercise used to decide whether you should consider using C++
If 2/3 of those questions fail,
you should consider finding another solution to your problem.
-As it surely has an equivalent without the problematic points.
+As it surely has an equivalent without the problematic aspects.
\section{Conclusion}
{