From b94782d1eb186594fbf89cd05cb72a211a7d86d3 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 10 May 2022 13:56:28 -0400 Subject: [PATCH] resolving a typo --- .../org/broadinstitute/hellbender/utils/read/GATKRead.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/broadinstitute/hellbender/utils/read/GATKRead.java b/src/main/java/org/broadinstitute/hellbender/utils/read/GATKRead.java index 84a2f39e03c..2854f1e9e0a 100644 --- a/src/main/java/org/broadinstitute/hellbender/utils/read/GATKRead.java +++ b/src/main/java/org/broadinstitute/hellbender/utils/read/GATKRead.java @@ -763,10 +763,10 @@ default Optional getPairOrientation() { Integer getAttributeAsInteger( final String attributeName ); /** - * Retrieve the value of a particular attribute typed as an floatingpoint value. + * Retrieve the value of a particular attribute typed as a floating point value. * * @param attributeName name of the attribute to retrieve - * @return integer value of the requested attribute, or {@code null} if the attribute is not present + * @return float value of the requested attribute, or {@code null} if the attribute is not present * @throws GATKException.ReadAttributeTypeMismatch if the attribute * value cannot be typed as a float */