diag/mbr: Fix typo in README
authorMatt Fleming <matt.fleming@intel.com>
Tue, 23 Oct 2012 15:49:23 +0000 (16:49 +0100)
committerMatt Fleming <matt.fleming@intel.com>
Tue, 23 Oct 2012 15:53:45 +0000 (16:53 +0100)
Reported-by: Ady <ady-sf@hotmail.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
diag/mbr/README

index 96b67c6..786816c 100644 (file)
@@ -11,7 +11,7 @@ Writing out an MBR is straight forward (it is assumed below that /dev/hda is the
 
   dd conv=notrunc bs=440 count=1 if=mbr.bin of=/dev/hda
 
-Writing a VBR to match Syslinux requires more work as it must have a jump and be offset into the partition (and as a result the code must be compaible with this offset):
+Writing a VBR to match Syslinux requires more work as it must have a jump and be offset into the partition (and as a result the code must be compatible with this offset):
 
   echo -en "\0353\0130\0220" |dd conv=notrunc bs=1 count=3 of=/dev/hda1
   dd conv=notrunc bs=2 count=210 seek=45 if=mbr.bin of=/dev/hda1