Fix generic section bitfield mistake.
diff --git a/README.md b/README.md
index a29c3e9..4f359f3 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
 A static library file for the parsing library will be written to `lib/`, and test executables will be written to `bin/`.
 
 ## Usage
-This project comes with several binaries and libraries to help you deal with CPER binary and CPER-JSON. The first of these is `cper-convert`, which is a command line tool that can be found in `bin/`. With this, you can convert to and from CPER and CPER-JSON through the command line. An example usage scenario is below:
+This project comes with several binaries to help you deal with CPER binary and CPER-JSON. The first of these is `cper-convert`, which is a command line tool that can be found in `bin/`. With this, you can convert to and from CPER and CPER-JSON through the command line. An example usage scenario is below:
 ```
 cper-convert to-cper samples/cper-json-test-arm.json --out cper.dump
 cper-convert to-json cper.generated.dump
diff --git a/sections/cper-section-generic.h b/sections/cper-section-generic.h
index dd1931d..4a60791 100644
--- a/sections/cper-section-generic.h
+++ b/sections/cper-section-generic.h
@@ -13,8 +13,8 @@
 #define GENERIC_OPERATION_TYPES_KEYS (int []){0, 1, 2, 3}
 #define GENERIC_OPERATION_TYPES_VALUES (const char*[]){"Unknown or generic", "Data Read", "Data Write", "Instruction Execution"}
 #define GENERIC_VALIDATION_BITFIELD_NAMES (const char*[]) \
-    {"processorTypeValid", "processorISAValid", "processorErrorTypeValid", "operationValid", "flagsValid" \
-    "levelValid", "cpuVersionValid", "cpuBrandInfoValid", "cpuIDValid", "targetAddressValid", "requestorIDValid" \
+    {"processorTypeValid", "processorISAValid", "processorErrorTypeValid", "operationValid", "flagsValid", \
+    "levelValid", "cpuVersionValid", "cpuBrandInfoValid", "cpuIDValid", "targetAddressValid", "requestorIDValid", \
     "responderIDValid", "instructionIPValid"}
 #define GENERIC_FLAGS_BITFIELD_NAMES (const char*[]) \
     {"restartable", "preciseIP", "overflow", "corrected"}