From 1177b2d1f39f6d227bf4878ecfd912de24d4a656 Mon Sep 17 00:00:00 2001 From: Carlo Refice Date: Mon, 16 Sep 2024 14:59:48 +0200 Subject: [PATCH] Minor comment improvements --- .../jdk/graal/compiler/nodes/extended/PublishWritesNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/nodes/extended/PublishWritesNode.java b/compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/nodes/extended/PublishWritesNode.java index 76fdea5375a91..82a87d636b799 100644 --- a/compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/nodes/extended/PublishWritesNode.java +++ b/compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/nodes/extended/PublishWritesNode.java @@ -42,7 +42,7 @@ /** * Wraps a newly allocated object, acting as a barrier for any initializing writes by preventing - * reads to the newly allocated object from floating above the initialization. + * reads from the newly allocated object from floating above the initialization. *

* Operations on {@linkplain org.graalvm.word.LocationIdentity#INIT_LOCATION init} memory, such as * initializing an allocated object's header and fields, are not considered side effecting, because