From 1677821f70ab7d5ebff3026b4d52722fbbcdb714 Mon Sep 17 00:00:00 2001 From: kavyamuppalla <32040076+kavyamuppalla@users.noreply.github.com> Date: Tue, 1 Oct 2019 20:12:50 -0400 Subject: [PATCH] Renamed cubeVol to cubeVolume --- Calculator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calculator.java b/Calculator.java index bc5c9f6..5a1ef51 100644 --- a/Calculator.java +++ b/Calculator.java @@ -130,7 +130,7 @@ public double cirPer(double r) { * the side length * @return the volume of a cube with sides of length s. */ - public double cubeVol(double s) { + public double cubeVolume(double s) { return 4 * s; }