Skip to content

Commit 6e4a273

Browse files
authored
Fix typos in reachability metadata gradle tasks descriptions (#463)
* metadataCopy: replaces 'metdata' with 'metadata' * collectReachabilityMetadata: removes trailing dot to match all other task's descriptions
1 parent 42fac01 commit 6e4a273

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

native-gradle-plugin/src/main/java/org/graalvm/buildtools/gradle/NativeImagePlugin.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ private void configureJavaProject(Project project, Provider<NativeImageService>
276276

277277
project.getTasks().register("metadataCopy", MetadataCopyTask.class, task -> {
278278
task.setGroup(LifecycleBasePlugin.BUILD_GROUP);
279-
task.setDescription("Copies metadata collected from tasks instrumented with the agent into target directories.");
279+
task.setDescription("Copies metadata collected from tasks instrumented with the agent into target directories");
280280
task.getInputTaskNames().set(graalExtension.getAgent().getMetadataCopy().getInputTaskNames());
281281
task.getOutputDirectories().set(graalExtension.getAgent().getMetadataCopy().getOutputDirectories());
282282
task.getMergeWithExisting().set(graalExtension.getAgent().getMetadataCopy().getMergeWithExisting());
@@ -285,7 +285,7 @@ private void configureJavaProject(Project project, Provider<NativeImageService>
285285

286286
project.getTasks().register("collectReachabilityMetadata", CollectReachabilityMetadata.class, task -> {
287287
task.setGroup(LifecycleBasePlugin.BUILD_GROUP);
288-
task.setDescription("Obtains native reachability metdata for the runtime classpath configuration");
288+
task.setDescription("Obtains native reachability metadata for the runtime classpath configuration");
289289
task.setClasspath(project.getConfigurations().getByName(JavaPlugin.RUNTIME_CLASSPATH_CONFIGURATION_NAME));
290290
});
291291

0 commit comments

Comments
 (0)