Skip to content

Commit

Permalink
fix: spelling in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Structed committed May 9, 2024
1 parent 6307292 commit 45f5aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user/Logins/login-steam-godotsteam.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func create_auth_ticket_for_web_api() -> void:
Steam.getAuthTicketForWebApi("AzurePlayFab")
func _on_get_auth_ticket_for_web_api_response(auth_ticket: int, result: int, ticket_size: int, ticket_buffer: Array) -> void:
print("Auth Ticker For Web API (%s) return with the result %s" % [auth_ticket, result])
print("Auth Ticket for Web API (%s) return with the result %s" % [auth_ticket, result])
steam_auth_ticket.id = auth_ticket
steam_auth_ticket.buffer = ticket_buffer
steam_auth_ticket.size = ticket_size
Expand Down Expand Up @@ -204,7 +204,7 @@ func _on_get_auth_sesssion_ticket(auth_ticket_id: int, result: int) -> void:
login(convert_auth_ticket(), false)
func _on_get_auth_ticket_for_web_api_response(auth_ticket: int, result: int, ticket_size: int, ticket_buffer: Array) -> void:
print("Auth Ticker For Web API (%s) return with the result %s" % [auth_ticket, result])
print("Auth Ticket for Web API (%s) return with the result %s" % [auth_ticket, result])
steam_auth_ticket.id = auth_ticket
steam_auth_ticket.buffer = ticket_buffer
steam_auth_ticket.size = ticket_size
Expand Down

0 comments on commit 45f5aef

Please sign in to comment.