From c326b558d33f50de300360b1946d44021520c5b8 Mon Sep 17 00:00:00 2001 From: Aniket <30843294+Aniket-Engg@users.noreply.github.com> Date: Thu, 2 Nov 2023 20:08:51 +0530 Subject: [PATCH] Rename helloWorld.sol to HelloWorld.sol --- .../playground/contracts/{helloWorld.sol => HelloWorld.sol} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename libs/remix-ws-templates/src/templates/playground/contracts/{helloWorld.sol => HelloWorld.sol} (99%) diff --git a/libs/remix-ws-templates/src/templates/playground/contracts/helloWorld.sol b/libs/remix-ws-templates/src/templates/playground/contracts/HelloWorld.sol similarity index 99% rename from libs/remix-ws-templates/src/templates/playground/contracts/helloWorld.sol rename to libs/remix-ws-templates/src/templates/playground/contracts/HelloWorld.sol index fe67651a1d..9ad0641975 100644 --- a/libs/remix-ws-templates/src/templates/playground/contracts/helloWorld.sol +++ b/libs/remix-ws-templates/src/templates/playground/contracts/HelloWorld.sol @@ -8,4 +8,4 @@ contract HelloWorld { function print() public pure returns (string memory) { return "Hello World!"; } -} \ No newline at end of file +}