diff --git a/java/core/src/main/java/com/google/protobuf/Descriptors.java b/java/core/src/main/java/com/google/protobuf/Descriptors.java index cffb18151dc7..b90f9028048f 100644 --- a/java/core/src/main/java/com/google/protobuf/Descriptors.java +++ b/java/core/src/main/java/com/google/protobuf/Descriptors.java @@ -849,7 +849,7 @@ public List getRealOneofs() { return Collections.unmodifiableList(Arrays.asList(oneofs).subList(0, realOneofCount)); } - /** Get a list of this message type's extensions. */ + /** Get a list of the extensions defined nested within this message type's scope. */ public List getExtensions() { return Collections.unmodifiableList(Arrays.asList(extensions)); }