Skip to content

Commit

Permalink
Fixed small syntax mistake in README
Browse files Browse the repository at this point in the history
  • Loading branch information
biirdy authored Oct 5, 2016
1 parent 00e1d94 commit dbadec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To best demonstrate the extent to which constructing and working with OpenFlow c

**Floodlight v1.0, v1.1, v1.2 -- the new and improved way to compose an OFFlowMod**

ArrayList<OFAction> actions = new ArrayList<OFAction();
ArrayList<OFAction> actions = new ArrayList<OFAction>();
actions.add(myFactory.actions().buildOutput() // builder pattern used throughout
.setPort(OFPort.of(1)) // raw types replaced with objects for type-checking and readability
.build()); // list of immutable OFAction objects
Expand Down

0 comments on commit dbadec2

Please sign in to comment.