From 0895f349322a419d90002116ff286dd37a731d88 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Sat, 4 Mar 2023 12:37:52 +0200 Subject: [PATCH] build: bump "prb-test" style: fix formatting in "Foo.sol" --- lib/prb-test | 2 +- src/Foo.sol | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/prb-test b/lib/prb-test index 99c2cd5..28aaf19 160000 --- a/lib/prb-test +++ b/lib/prb-test @@ -1 +1 @@ -Subproject commit 99c2cd52a755150fafa198f1479f0d2325456e07 +Subproject commit 28aaf19d4fea85b2000431ced340002e808abb64 diff --git a/src/Foo.sol b/src/Foo.sol index 477e55a..d69be05 100644 --- a/src/Foo.sol +++ b/src/Foo.sol @@ -2,11 +2,7 @@ pragma solidity >=0.8.19; contract Foo { - function id(uint256 value) - external - pure - returns (uint256) - { + function id(uint256 value) external pure returns (uint256) { return value; } }