Skip to content

Commit

Permalink
Fixed a typo in BelugaSocket.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Swain committed Apr 17, 2012
1 parent fc059bd commit 07758ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/beluga_socket.rb
Expand Up @@ -32,7 +32,7 @@ def self.reconnect
def self.sock force_connect = false
if force_connect || @sock.nil?
@sock.close unless @sock.nil?
@sock = TCPsocket.open('127.0.0.1', 1234)
@sock = TCPSocket.open('127.0.0.1', 1234)
@sock.wait(100)
if @sock.ready?
@sock.gets
Expand Down

0 comments on commit 07758ad

Please sign in to comment.