Committed by
Gerrit Code Review
Fix javadoc error
Change-Id: Ica9ef8f921aa7b8ce891e17a6839bfec6f444068
Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -44,7 +44,7 @@ public interface SegmentRoutingService { | ... | @@ -44,7 +44,7 @@ public interface SegmentRoutingService { |
| 44 | /** | 44 | /** |
| 45 | * Minimum IP priority. | 45 | * Minimum IP priority. |
| 46 | * | 46 | * |
| 47 | - * Should > 0 such that priority of /0 will not conflict with lowest | 47 | + * Should < 0 such that priority of /0 will not conflict with lowest |
| 48 | * priority default entries. | 48 | * priority default entries. |
| 49 | */ | 49 | */ |
| 50 | int MIN_IP_PRIORITY = 10; | 50 | int MIN_IP_PRIORITY = 10; | ... | ... |
apps/segmentrouting/src/main/java/org/onosproject/segmentrouting/config/SegmentRoutingAppConfig.java
| ... | @@ -150,7 +150,7 @@ public class SegmentRoutingAppConfig extends Config<ApplicationId> { | ... | @@ -150,7 +150,7 @@ public class SegmentRoutingAppConfig extends Config<ApplicationId> { |
| 150 | /** | 150 | /** |
| 151 | * Sets names of ports that are ignored by SegmentRouting. | 151 | * Sets names of ports that are ignored by SegmentRouting. |
| 152 | * | 152 | * |
| 153 | - * @paran excludePorts names of ports that are ignored by SegmentRouting | 153 | + * @param excludePorts names of ports that are ignored by SegmentRouting |
| 154 | * @return this {@link SegmentRoutingAppConfig} | 154 | * @return this {@link SegmentRoutingAppConfig} |
| 155 | */ | 155 | */ |
| 156 | public SegmentRoutingAppConfig setExcludePorts(Set<String> excludePorts) { | 156 | public SegmentRoutingAppConfig setExcludePorts(Set<String> excludePorts) { | ... | ... |
-
Please register or login to post a comment