Skip to content

Commit

Permalink
fix: fixing typo in error
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Frowen committed Jun 27, 2021
1 parent 466516b commit 6195108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirage/Runtime/NetworkServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ void ThrowIfSocketIsMissing()
if (SocketFactory is null)
SocketFactory = GetComponent<SocketFactory>();
if (SocketFactory == null)
throw new InvalidOperationException($"{nameof(SocketFactory)} could not be found for ${nameof(NetworkServer)}");
throw new InvalidOperationException($"{nameof(SocketFactory)} could not be found for {nameof(NetworkServer)}");
}

internal void Update()
Expand Down

0 comments on commit 6195108

Please sign in to comment.