From 5a65fa3a074b59e8cb19ea02a468eb93bf8e5cc5 Mon Sep 17 00:00:00 2001 From: highcloudwind Date: Tue, 1 Apr 2025 20:35:16 +0800 Subject: [PATCH] chore: fix some function names in comment Signed-off-by: highcloudwind --- internal/super/files.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/super/files.go b/internal/super/files.go index 83d6e263a..3c4e90509 100644 --- a/internal/super/files.go +++ b/internal/super/files.go @@ -105,12 +105,12 @@ func (f *projectFiles) deployments() (map[string][]string, error) { return deployments, nil } -// contracts returns a list of scripts in project. +// scripts returns a list of scripts in project. func (f *projectFiles) scripts() ([]string, error) { return f.getCadenceFilepaths(scriptDir) } -// contracts returns a list of transactions in project. +// transactions returns a list of transactions in project. func (f *projectFiles) transactions() ([]string, error) { return f.getCadenceFilepaths(transactionDir) }