diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fe0f0af..78dd5c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,6 @@ jobs: - uses: actions/setup-go@v5 with: go-version-file: go.mod - cache-dependency-path: '**/go.sum' - name: Show System run: | uname -a diff --git a/context.go b/context.go index de3ce38..8aeeb2a 100644 --- a/context.go +++ b/context.go @@ -1,9 +1,9 @@ -// Copyright (c) NOXIDE.LOL +// Copyright (c) CattleCloud LLC // SPDX-License-Identifier: BSD-3-Clause -// Package xtc implements a simplified and more convenient API for creating +// Package scope implements a simplified and more convenient API for creating // context.Context values with often used functionality like timeouts. -package xtc +package scope import ( "context" diff --git a/context_test.go b/context_test.go index a3cb307..a1caadc 100644 --- a/context_test.go +++ b/context_test.go @@ -1,7 +1,7 @@ -// Copyright (c) NOXIDE.LOL +// Copyright (c) CattleCloud LLC // SPDX-License-Identifier: BSD-3-Clause -package xtc +package scope import ( "testing"