Skip to content

Commit

Permalink
Minor formatting clean up about
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
SeanTAllen committed May 3, 2017
1 parent 72e4d3c commit 9faa938
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/net/_test.pony
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,6 @@ class _TestTCPUnmuteReceiveNotify is TCPConnectionNotify
fun ref connect_failed(conn: TCPConnection ref) =>
_h.fail_action("receiver connect failed")


class iso _TestTCPThrottle is UnitTest
"""
Test that when we experience backpressure when sending that the `throttled`
Expand Down
6 changes: 3 additions & 3 deletions packages/net/tcp_listener.pony
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ actor TCPListener
var _max_size: USize

new create(auth: TCPListenerAuth, notify: TCPListenNotify iso,
host: String = "", service: String = "0", limit: USize = 0,
host: String = "", service: String = "0", limit: USize = 0,
init_size: USize = 64, max_size: USize = 16384)
=>
"""
Expand All @@ -57,7 +57,7 @@ actor TCPListener
_notify_listening()

new ip4(auth: TCPListenerAuth, notify: TCPListenNotify iso,
host: String = "", service: String = "0", limit: USize = 0,
host: String = "", service: String = "0", limit: USize = 0,
init_size: USize = 64, max_size: USize = 16384)
=>
"""
Expand All @@ -73,7 +73,7 @@ actor TCPListener
_notify_listening()

new ip6(auth: TCPListenerAuth, notify: TCPListenNotify iso,
host: String = "", service: String = "0", limit: USize = 0,
host: String = "", service: String = "0", limit: USize = 0,
init_size: USize = 64, max_size: USize = 16384)
=>
"""
Expand Down

0 comments on commit 9faa938

Please sign in to comment.