targets: Fix typos in comments

"at compile team" should probably be "at compile time".

No-Docs-Update-Reason: This is just fixing a typo in a comment.

Change-Id: I7d4130f224e40db1151ddaf74aa146038b5611b7
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/40002
Commit-Queue: Keir Mierle <keir@google.com>
Reviewed-by: Keir Mierle <keir@google.com>
diff --git a/targets/lm3s6965evb-qemu/boot.cc b/targets/lm3s6965evb-qemu/boot.cc
index f4a537c..bdc6e73 100644
--- a/targets/lm3s6965evb-qemu/boot.cc
+++ b/targets/lm3s6965evb-qemu/boot.cc
@@ -20,7 +20,7 @@
 // Note that constexpr is used inside of this function instead of using a static
 // constexpr or declaring it outside of this function in an anonymous namespace,
 // because constexpr makes it available for the compiler to evaluate during
-// copmile time but does NOT require it to be evaluated at compile team and we
+// compile time but does NOT require it to be evaluated at compile time and we
 // have to be incredibly careful that this does not end up in the .data section.
 void pw_boot_PreStaticMemoryInit() {
   // Force RCC to be at default at boot.
diff --git a/targets/stm32f429i-disc1/boot.cc b/targets/stm32f429i-disc1/boot.cc
index a0d0fc2..787d37f 100644
--- a/targets/stm32f429i-disc1/boot.cc
+++ b/targets/stm32f429i-disc1/boot.cc
@@ -21,7 +21,7 @@
 // Note that constexpr is used inside of this function instead of using a static
 // constexpr or declaring it outside of this function in an anonymous namespace,
 // because constexpr makes it available for the compiler to evaluate during
-// copmile time but does NOT require it to be evaluated at compile team and we
+// compile time but does NOT require it to be evaluated at compile time and we
 // have to be incredibly careful that this does not end up in the .data section.
 void pw_boot_PreStaticMemoryInit() {
   // TODO(pwbug/17): Optionally enable Replace when Pigweed config system is