update inspect command to use => rather than |-> for rules
diff --git a/client/lib/commands/inspect.js b/client/lib/commands/inspect.js
index be1c745..d7e6b1f 100644
--- a/client/lib/commands/inspect.js
+++ b/client/lib/commands/inspect.js
@@ -46,7 +46,7 @@
 		    // then the entity exists, but isn't an action. try rules, next
 		    //
 		    ow.rules.get({ ruleName: name })
-			.then(okAfter(rule => console.log(`${rule.trigger} |-> ` + chainColor(rule.action)), next))
+			.then(okAfter(rule => console.log(`${rule.trigger} => ` + chainColor(rule.action)), next))
 			.catch(errorWhile('inspecting entity', next));
 		}
 	    });