From 686ea666c38c83e235cabc39ba4c20eba13799c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 4 Nov 2020 11:08:04 +0100 Subject: [PATCH] gradle_guide.md: fix heading case --- tutorials/build_system/gradle_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/build_system/gradle_guide.md b/tutorials/build_system/gradle_guide.md index 8d51fb25b..b43e7fa87 100644 --- a/tutorials/build_system/gradle_guide.md +++ b/tutorials/build_system/gradle_guide.md @@ -121,7 +121,7 @@ The best practice is to keep `project.version` current. By default, if you modify `project.version` in `build.gradle`, the Gradle plugin will automatically update the `` value in the `plugin.xml` file. This practice keeps all version declarations synchronized. -### Verifying plugin +### Verifying Plugin The Gradle plugin provides two tasks that allow for running integrity and compatibility tests: - `verifyPlugin` - validates completeness and contents of `plugin.xml` descriptors as well as plugin’s archive structure, - `runPluginVerifier` - runs the [IntelliJ Plugin Verifier](https://github.com/JetBrains/intellij-plugin-verifier) tool to check the binary compatibility with specified IntelliJ IDE builds.