Fix error in gdisk man page.
diff --git a/NEWS b/NEWS
index 1db240f..a4faeb1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+0.8.8 (?/??/2013):
+------------------
+
+
+
 0.8.7 (7/8/2013):
 -----------------
 
diff --git a/gdisk.8 b/gdisk.8
index d37904f..a8684be 100644
--- a/gdisk.8
+++ b/gdisk.8
@@ -128,7 +128,7 @@
 .SH "OPTIONS"
 .TP 
 .B \-l
-List the partition tables for the specified devices and then exit.
+List the partition table for the specified device and then exits.
 .PP 
 
 Most interactions with \fBgdisk\fR
diff --git a/gptpart.cc b/gptpart.cc
index 6b7207d..5eff81a 100644
--- a/gptpart.cc
+++ b/gptpart.cc
@@ -213,12 +213,12 @@
       cout << "Partition unique GUID: " << uniqueGUID << "\n";
 
       cout << "First sector: " << firstLBA << " (at "
-            << BytesToIeee(firstLBA, blockSize) << ")\n";
+           << BytesToIeee(firstLBA, blockSize) << ")\n";
       cout << "Last sector: " << lastLBA << " (at "
-            << BytesToIeee(lastLBA, blockSize) << ")\n";
+           << BytesToIeee(lastLBA, blockSize) << ")\n";
       size = (lastLBA - firstLBA + 1);
       cout << "Partition size: " << size << " sectors ("
-            << BytesToIeee(size, blockSize) << ")\n";
+           << BytesToIeee(size, blockSize) << ")\n";
       cout << "Attribute flags: ";
       cout.fill('0');
       cout.width(16);