From 7f336b6a7462c40e8086ea8f909836405a11ca70 Mon Sep 17 00:00:00 2001 From: Sandeep Dasgupta Date: Fri, 19 Jul 2024 18:27:12 +0000 Subject: [PATCH] MInor lint fix (#2448) --- stablehlo/reference/Tensor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stablehlo/reference/Tensor.cpp b/stablehlo/reference/Tensor.cpp index 75a3a83db7..ad5cd78cb0 100644 --- a/stablehlo/reference/Tensor.cpp +++ b/stablehlo/reference/Tensor.cpp @@ -423,7 +423,7 @@ void Tensor::print(raw_ostream &os) const { getType().print(os); os << " {"; Index idx{}; - printHelper(os, *this, getShape(), idx, /*index=*/1); + printHelper(os, *this, getShape(), idx, /*indent=*/1); os << "}"; }