From 970ba1d1240ad599c601fbba3826b20efe0d8b20 Mon Sep 17 00:00:00 2001 From: peteg Date: Mon, 6 Apr 2020 06:58:18 -0700 Subject: [PATCH] Fix a small but sense-inverting typo in the PrimitiveDoubleArraySubject docs. (PrimitiveFloatArraySubject was already correct.) RELNOTES=N/A ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=305019347 --- .../com/google/common/truth/PrimitiveDoubleArraySubject.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/common/truth/PrimitiveDoubleArraySubject.java b/core/src/main/java/com/google/common/truth/PrimitiveDoubleArraySubject.java index 414b6a5fa..018a89b05 100644 --- a/core/src/main/java/com/google/common/truth/PrimitiveDoubleArraySubject.java +++ b/core/src/main/java/com/google/common/truth/PrimitiveDoubleArraySubject.java @@ -177,7 +177,7 @@ private static double checkedToDouble(Number expected) { * {@link Double#NaN} to be equal to themselves (contrast with {@code usingTolerance(0.0)} * which does not). *
  • It does not consider {@code -0.0} to be equal to {@code 0.0} (contrast with {@code - * usingTolerance(0.0)} which does not). + * usingTolerance(0.0)} which does). *
  • The subsequent methods in the chain may throw a {@link NullPointerException} if any * expected {@link Double} instance is null. *