Spell correct (s/begining/beginning/)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184362 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/DebugInfo/DWARFDebugLoc.cpp b/lib/DebugInfo/DWARFDebugLoc.cpp
index 46de489..3895ffa 100644
--- a/lib/DebugInfo/DWARFDebugLoc.cpp
+++ b/lib/DebugInfo/DWARFDebugLoc.cpp
@@ -21,11 +21,11 @@
     for (SmallVectorImpl<Entry>::const_iterator I2 = I->Entries.begin(), E2 = I->Entries.end(); I2 != E2; ++I2) {
       if (I2 != I->Entries.begin())
         OS.indent(Indent);
-      OS << "Begining address offset: " << format("0x%016" PRIx64, I2->Begin)
+      OS << "Beginning address offset: " << format("0x%016" PRIx64, I2->Begin)
          << '\n';
-      OS.indent(Indent) << "  Ending address offset: "
+      OS.indent(Indent) << "   Ending address offset: "
                         << format("0x%016" PRIx64, I2->End) << '\n';
-      OS.indent(Indent) << "   Location description: ";
+      OS.indent(Indent) << "    Location description: ";
       for (SmallVectorImpl<unsigned char>::const_iterator I3 = I2->Loc.begin(), E3 = I2->Loc.end(); I3 != E3; ++I3) {
         OS << format("%2.2x ", *I3);
       }