Fix typo in path not found exception text

Change-Id: Ia964a60c25eab2372d0d788c13fb1314f1a17279
diff --git a/core/net/src/main/java/org/onlab/onos/net/intent/impl/ConnectivityIntentCompiler.java b/core/net/src/main/java/org/onlab/onos/net/intent/impl/ConnectivityIntentCompiler.java
index 405366d..a34f920 100644
--- a/core/net/src/main/java/org/onlab/onos/net/intent/impl/ConnectivityIntentCompiler.java
+++ b/core/net/src/main/java/org/onlab/onos/net/intent/impl/ConnectivityIntentCompiler.java
@@ -105,7 +105,7 @@
                     }
                 }).toList();
         if (filtered.isEmpty()) {
-            throw new PathNotFoundException("No packet path form " + one + " to " + two);
+            throw new PathNotFoundException("No packet path from " + one + " to " + two);
         }
         // TODO: let's be more intelligent about this eventually
         return filtered.iterator().next();