Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions context.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions context_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) NOXIDE.LOL
// Copyright (c) CattleCloud LLC
// SPDX-License-Identifier: BSD-3-Clause

package xtc
package scope

import (
"testing"
Expand Down
Loading