pseq: Fix backticks in README

Missing backticks in README Markdown files are causing improper
rendering. Fix them.

Signed-off-by: Jim Wright <jlwright@us.ibm.com>
Change-Id: Ibd49ae61a5188133d89b70cfb23af80f86d99670
diff --git a/phosphor-power-sequencer/config_files/README.md b/phosphor-power-sequencer/config_files/README.md
index 8e8dbc1..c90e733 100644
--- a/phosphor-power-sequencer/config_files/README.md
+++ b/phosphor-power-sequencer/config_files/README.md
@@ -1,6 +1,6 @@
 ## Overview
 
-The `UCD90320Monitor' class determines its device configuration from a JSON
+The `UCD90320Monitor` class determines its device configuration from a JSON
 configuration file. The configuration file describes the power sequencer rails
 and power good (pgood) pins defined in the system.
 
@@ -23,7 +23,7 @@
 unique. If the BMC system utilizes the openpower-pels extension, then it will be
 used as an index into the `phosphor-logging` Message Registry.
 
-Example 'rails' array with 'name' elements:
+Example `rails` array with `name` elements:
 
 ```
 "rails": [
@@ -35,7 +35,7 @@
 The `pins` array also uses a `line` element which is the GPIO line number of the
 pgood pin in the power sequencer device.
 
-Example 'pins' array with 'name' and 'line' elements:
+Example `pins` array with `name` and `line` elements:
 
 ```
 "pins": [
@@ -56,7 +56,7 @@
 to be present, which could mean the necessary parts are always present in the
 system or that a not present part would not cause a pgood failure.
 
-Example 'rails' array element including 'presence' element:
+Example `rails` array element including `presence` element:
 
 ```
 {
@@ -65,7 +65,7 @@
 }
 ```
 
-Example 'pins' array element including 'presence' element:
+Example `pins` array element including `presence` element:
 
 ```
 {
diff --git a/phosphor-power-sequencer/src/README.md b/phosphor-power-sequencer/src/README.md
index faabc60..70213a1 100644
--- a/phosphor-power-sequencer/src/README.md
+++ b/phosphor-power-sequencer/src/README.md
@@ -8,7 +8,7 @@
 ### PowerControl
 
 Implements GPIO control of power on / off and monitoring of the chassis power
-good. The GPIOs are defined in the device tree and are named
+good (pgood). The GPIOs are defined in the device tree and are named
 `power-chassis-control` and `power-chassis-good` respectively. The chassis pgood
 is monitored on a three second poll. Enforces a minimum power off time of 15
 seconds from cold start and 25 seconds from power off.
@@ -27,9 +27,9 @@
 
 The `state` property is set to initiate a power on or power off sequence. The
 power good `pgood` property reflects the power state of the chassis. At power on
-time the `pgood` will lag the
-'state`as the power sequencer performs its processing. The same lag will occur on a requested power off. Loss of`pgood`without a`state`
-change request indicates a pgood failure.
+time the `pgood` will lag the `state` as the power sequencer performs its
+processing. The same lag will occur on a requested power off. Loss of `pgood`
+without a `state` change request indicates a pgood failure.
 
 ### PowerSequencerMonitor