Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo fix #202

Merged
merged 2 commits into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/yojimbo_base_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace yojimbo
@param allocator The allocator for all memory used by the client.
@param config The base client/server configuration.
@param time The current time in seconds. See ClientInterface::AdvanceTime
@param allocator The adapter to the game program. Specifies allocators, message factory to use etc.
@param adapter The adapter to the game program. Specifies allocators, message factory to use etc.
*/

explicit BaseClient( class Allocator & allocator, const ClientServerConfig & config, class Adapter & adapter, double time );
Expand Down
2 changes: 1 addition & 1 deletion include/yojimbo_client_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ namespace yojimbo

/**
Is the client connected to a server?
This is true once a client successfully finishes connection negotiatio, and connects to a server. It is false while connecting to a server.
This is true once a client successfully finishes connection negotiation, and connects to a server. It is false while connecting to a server.
@returns true if the client is connected to a server.
*/

Expand Down
Loading