about summary refs log tree commit diff
path: root/src/libpanic_unwind/dwarf/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libpanic_unwind/dwarf/mod.rs')
-rw-r--r--src/libpanic_unwind/dwarf/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libpanic_unwind/dwarf/mod.rs b/src/libpanic_unwind/dwarf/mod.rs
index 3ff250ff659..c9ae87ade28 100644
--- a/src/libpanic_unwind/dwarf/mod.rs
+++ b/src/libpanic_unwind/dwarf/mod.rs
@@ -32,7 +32,7 @@ impl DwarfReader {
         DwarfReader { ptr }
     }
 
-    // DWARF streams are packed, so e.g. a u32 would not necessarily be aligned
+    // DWARF streams are packed, so e.g., a u32 would not necessarily be aligned
     // on a 4-byte boundary. This may cause problems on platforms with strict
     // alignment requirements. By wrapping data in a "packed" struct, we are
     // telling the backend to generate "misalignment-safe" code.