ONOS-3200 unify code formation and fix grammar problem

Change-Id: Iabdfb0d01c16307c46bc8b530fb74ff7b2dee633
diff --git a/ovsdb/api/src/main/java/org/onosproject/ovsdb/controller/OvsdbTunnel.java b/ovsdb/api/src/main/java/org/onosproject/ovsdb/controller/OvsdbTunnel.java
index e1c5c7f..8c857da 100644
--- a/ovsdb/api/src/main/java/org/onosproject/ovsdb/controller/OvsdbTunnel.java
+++ b/ovsdb/api/src/main/java/org/onosproject/ovsdb/controller/OvsdbTunnel.java
@@ -23,7 +23,8 @@
 import org.onlab.packet.IpAddress;
 
 /**
- * The class representing a ovsdb tunnel. This class is immutable.
+ * The class representing an ovsdb tunnel.
+ * This class is immutable.
  */
 public final class OvsdbTunnel {
 
@@ -38,7 +39,7 @@
     private final OvsdbTunnelName tunnelName;
 
     /**
-     * Constructor from a IpAddress localIp, IpAddress remoteIp Type tunnelType,
+     * Constructor from an IpAddress localIp, IpAddress remoteIp Type tunnelType,
      * OvsdbTunnelName tunnelName.
      *
      * @param localIp the localIp to use
@@ -58,36 +59,36 @@
     }
 
     /**
-     * Gets the local IP of the tunnel.
+     * Gets the local IP of tunnel.
      *
-     * @return the local IP of the tunnel
+     * @return the local IP of tunnel
      */
     public IpAddress localIp() {
         return localIp;
     }
 
     /**
-     * Gets the remote IP of the tunnel.
+     * Gets the remote IP of tunnel.
      *
-     * @return the remote IP of the tunnel
+     * @return the remote IP of tunnel
      */
     public IpAddress remoteIp() {
         return remoteIp;
     }
 
     /**
-     * Gets the tunnel type of the tunnel.
+     * Gets the tunnel type of tunnel.
      *
-     * @return the tunnel type of the tunnel
+     * @return the tunnel type of tunnel
      */
     public Type tunnelType() {
         return tunnelType;
     }
 
     /**
-     * Gets the tunnel name of the tunnel.
+     * Gets the tunnel name of tunnel.
      *
-     * @return the tunnel name of the tunnel
+     * @return the tunnel name of tunnel
      */
     public OvsdbTunnelName tunnelName() {
         return tunnelName;