From c4ba1556174f2cd887700c42c86c1b56ccd0fe51 Mon Sep 17 00:00:00 2001 From: 0xmulch <156262846+0xmulch@users.noreply.github.com> Date: Sat, 13 Jan 2024 13:11:35 -0600 Subject: [PATCH] fix: Update path in string-utils import (#57) Fixed path to reference correct strings.sol --- src/HuffConfig.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HuffConfig.sol b/src/HuffConfig.sol index a6f8b09..338e496 100644 --- a/src/HuffConfig.sol +++ b/src/HuffConfig.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.13 <0.9.0; import {Vm} from "forge-std/Vm.sol"; -import {strings} from "stringutils/strings.sol"; +import {strings} from "stringutils/src/strings.sol"; contract HuffConfig { using strings for *;