Corrects tab formatting on bridge code snippet

Neil Dorin
2020-02-11 16:02:48 -07:00
parent 223f5cef14
commit 97662d607a

@@ -123,19 +123,19 @@ In each device/room step, a device factory process is called. We call subsequent
```
// Try local factories first
var newDev = DeviceFactory.GetDevice(devConf);
var newDev = DeviceFactory.GetDevice(devConf);
if (newDev == null)
if (newDev == null)
newDev = BridgeFactory.GetDevice(devConf);
// Then associated library factories
if (newDev == null)
// Then associated library factories
if (newDev == null)
newDev = PepperDash.Essentials.Core.DeviceFactory.GetDevice(devConf);
if (newDev == null)
if (newDev == null)
newDev = PepperDash.Essentials.Devices.Common.DeviceFactory.GetDevice(devConf);
if (newDev == null)
if (newDev == null)
newDev = PepperDash.Essentials.DM.DeviceFactory.GetDevice(devConf);
if (newDev == null)
if (newDev == null)
newDev = PepperDash.Essentials.Devices.Displays.DisplayDeviceFactory.GetDevice(devConf);
```