Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit be625ec

Browse files
committed
removing return
1 parent 27e81b3 commit be625ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/TensorFlow/Operators/Basic.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ public extension Tensor where Scalar: Numeric {
581581
// @differentiable(wrt: self where Scalar: TensorFlowFloatingPoint)
582582
@inlinable
583583
func clipped(min: Tensor, max: Tensor) -> Tensor {
584-
return Raw.clipByValue(t: self, clipValueMin: min, clipValueMax: max)
584+
Raw.clipByValue(t: self, clipValueMin: min, clipValueMax: max)
585585
}
586586
}
587587

0 commit comments

Comments
 (0)