From cc19b805650d827c02a7b7f31f8a0a51f2aeb969 Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Tue, 2 Jun 2020 09:08:34 -0700 Subject: [PATCH] Remove `patch` from the version string Remove `patch` from the version string when it's `0`. Based on https://github.com/godotengine/godot-docs/pull/3626#discussion_r433887279. --- tutorials/plugins/android/android_plugin.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/plugins/android/android_plugin.rst b/tutorials/plugins/android/android_plugin.rst index 3fd45cc48..db5e01a03 100644 --- a/tutorials/plugins/android/android_plugin.rst +++ b/tutorials/plugins/android/android_plugin.rst @@ -55,7 +55,7 @@ The instructions below assumes that you're using Android Studio. 2. Add the Godot engine library as a dependency to your plugin module: - - Download the Godot engine library (``godot-lib...aar``) from the `Godot download page `_ (e.g: ``godot-lib.4.0.0.stable.aar``). + - Download the Godot engine library (``godot-lib...aar``) from the `Godot download page `_ (e.g: ``godot-lib.4.0.stable.aar``). - Follow `these instructions `__ to add the Godot engine library as a dependency for your plugin.