From 0161d90b4d977d65f917a7799acb7313a43cba5a Mon Sep 17 00:00:00 2001 From: 0xmulch <156262846+0xmulch@users.noreply.github.com> Date: Fri, 12 Jan 2024 06:43:16 -0600 Subject: [PATCH] Update HuffConfig.sol 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 *;