Skip to content

Commit 2c708f6

Browse files
authored
Merge pull request #11199 from godotengine/syntaxerror247-patch-1
Update android_in_app_purchases.rst
2 parents 4de096a + 35941ee commit 2c708f6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tutorials/platform/android/android_in_app_purchases.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Android in-app purchases
44
========================
55

6-
Godot offers a first-party ``GodotGooglePlayBilling`` Android plugin compatible with Godot 4 which uses the `Google Play Billing library <https://developer.android.com/google/play/billing>`_.
6+
Godot offers a first-party ``GodotGooglePlayBilling`` Android plugin compatible with Godot 4.2+ which uses the `Google Play Billing library <https://developer.android.com/google/play/billing>`_.
77

88

99
Usage
@@ -29,8 +29,6 @@ Initialization example:
2929

3030
::
3131

32-
var billing_client
33-
3432
func _ready():
3533
BillingClient.connected.connect(_on_connected) # No params
3634
BillingClient.disconnected.connect(_on_disconnected) # No params
@@ -44,7 +42,7 @@ Initialization example:
4442
BillingClient.start_connection()
4543

4644
The API must be in a connected state prior to use. The ``connected`` signal is sent
47-
when the connection process succeeds. You can also use ``isReady()`` to determine if the plugin
45+
when the connection process succeeds. You can also use ``is_ready()`` to determine if the plugin
4846
is ready for use. The ``get_connection_state()`` function returns the current connection state
4947
of the plugin.
5048

0 commit comments

Comments
 (0)