Skip to content

Commit

Permalink
Fix name of exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Jan 4, 2025
1 parent 6908429 commit 65daba2
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@
"status": "active"
},
{
"slug": "chess-game",
"name": "Chess Game",
"slug": "chessboard",
"name": "ChessBoard",
"uuid": "162bf709-ed48-438d-9a32-f572099cf42e",
"concepts": [
"ranges"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import PackageDescription

let package = Package(
name: "ChessBoard",
name: "Chessboard",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "ChessBoard",
targets: ["ChessBoard"])
name: "Chessboard",
targets: ["Chessboard"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -19,10 +19,10 @@ let package = Package(
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "ChessBoard",
name: "Chessboard",
dependencies: []),
.testTarget(
name: "ChessBoardTests",
dependencies: ["ChessBoard"]),
name: "ChessboardTests",
dependencies: ["Chessboard"]),
]
)

0 comments on commit 65daba2

Please sign in to comment.