From 334b386eddd15a2b41bf0bc504d43ba62e5d9901 Mon Sep 17 00:00:00 2001 From: thedavidmeister Date: Mon, 8 Sep 2025 17:27:42 +0200 Subject: [PATCH] fix copyright --- src/error/ErrDecimalFloat.sol | 2 +- src/error/ErrParse.sol | 2 +- src/lib/format/LibFormatDecimalFloat.sol | 2 +- src/lib/parse/LibParseDecimalFloat.sol | 2 +- test/src/lib/format/LibFormatDecimalFloat.countSigFigs.t.sol | 2 +- test/src/lib/format/LibFormatDecimalFloat.toDecimalString.t.sol | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/error/ErrDecimalFloat.sol b/src/error/ErrDecimalFloat.sol index cd4cfd0c..a1f7abe4 100644 --- a/src/error/ErrDecimalFloat.sol +++ b/src/error/ErrDecimalFloat.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: LicenseRef-DCL-1.0 -// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister +// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd pragma solidity ^0.8.25; import {Float} from "../lib/LibDecimalFloat.sol"; diff --git a/src/error/ErrParse.sol b/src/error/ErrParse.sol index a7728d91..4fb9af96 100644 --- a/src/error/ErrParse.sol +++ b/src/error/ErrParse.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: LicenseRef-DCL-1.0 -// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister +// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd pragma solidity ^0.8.25; /// @dev Thrown when the decimal point is malformed in a float string. diff --git a/src/lib/format/LibFormatDecimalFloat.sol b/src/lib/format/LibFormatDecimalFloat.sol index e817f6c7..255cf5cc 100644 --- a/src/lib/format/LibFormatDecimalFloat.sol +++ b/src/lib/format/LibFormatDecimalFloat.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: LicenseRef-DCL-1.0 -// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister +// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd pragma solidity ^0.8.25; import {LibDecimalFloat, Float} from "../LibDecimalFloat.sol"; diff --git a/src/lib/parse/LibParseDecimalFloat.sol b/src/lib/parse/LibParseDecimalFloat.sol index 350b0763..b7508319 100644 --- a/src/lib/parse/LibParseDecimalFloat.sol +++ b/src/lib/parse/LibParseDecimalFloat.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: LicenseRef-DCL-1.0 -// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister +// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd pragma solidity ^0.8.25; import {LibParseChar} from "rain.string/lib/parse/LibParseChar.sol"; diff --git a/test/src/lib/format/LibFormatDecimalFloat.countSigFigs.t.sol b/test/src/lib/format/LibFormatDecimalFloat.countSigFigs.t.sol index 9fe785f8..4c4b6d27 100644 --- a/test/src/lib/format/LibFormatDecimalFloat.countSigFigs.t.sol +++ b/test/src/lib/format/LibFormatDecimalFloat.countSigFigs.t.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: LicenseRef-DCL-1.0 -// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister +// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd pragma solidity =0.8.25; import {Test} from "forge-std/Test.sol"; diff --git a/test/src/lib/format/LibFormatDecimalFloat.toDecimalString.t.sol b/test/src/lib/format/LibFormatDecimalFloat.toDecimalString.t.sol index 3501f10e..d56342c7 100644 --- a/test/src/lib/format/LibFormatDecimalFloat.toDecimalString.t.sol +++ b/test/src/lib/format/LibFormatDecimalFloat.toDecimalString.t.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: LicenseRef-DCL-1.0 -// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister +// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd pragma solidity =0.8.25; import {Test} from "forge-std/Test.sol";