Update for `swift package` command line syntax changes.
diff --git a/swift-package-init-exec.md b/swift-package-init-exec.md
index f72d21b..674e101 100644
--- a/swift-package-init-exec.md
+++ b/swift-package-init-exec.md
@@ -5,7 +5,7 @@
 ```
 RUN: rm -rf %t.dir
 RUN: mkdir -p %t.dir/Project
-RUN: %{swift} package --chdir %t.dir/Project init=executable
+RUN: %{swift} package --chdir %t.dir/Project init --type executable
 RUN: %{swift} build --chdir %t.dir/Project &> %t.build-log
 ```
 
diff --git a/swift-package-init-lib.md b/swift-package-init-lib.md
index d63e553..3b07ab7 100644
--- a/swift-package-init-lib.md
+++ b/swift-package-init-lib.md
@@ -6,7 +6,7 @@
 ```
 RUN: rm -rf %t.dir
 RUN: mkdir -p %t.dir/Project
-RUN: %{swift} package --chdir %t.dir/Project init=library
+RUN: %{swift} package --chdir %t.dir/Project init --type library
 RUN: %{swift} build --chdir %t.dir/Project &> %t.build-log
 RUN: %{swift} test --chdir %t.dir/Project &> %t.test-log
 ```
diff --git a/swift-update-safety.md b/swift-update-safety.md
index dffc1a9..76e6a6e 100644
--- a/swift-update-safety.md
+++ b/swift-update-safety.md
@@ -10,7 +10,7 @@
 
 ```
 RUN: mkdir -p %t.dir/Dep
-RUN: %{swift} package -C %t.dir/Dep init=library
+RUN: %{swift} package -C %t.dir/Dep init --type library
 RUN: git -C %t.dir/Dep init
 RUN: git -C %t.dir/Dep add -A
 RUN: git -C %t.dir/Dep commit -m "Initial commit."
@@ -21,7 +21,7 @@
 
 ```
 RUN: mkdir -p %t.dir/Cmd
-RUN: %{swift} package -C %t.dir/Cmd init=executable
+RUN: %{swift} package -C %t.dir/Cmd init --type executable
 RUN: echo "import PackageDescription" >  %t.dir/Cmd/Package.swift
 RUN: echo "let package = Package(" >>  %t.dir/Cmd/Package.swift
 RUN: echo "  name: \"Cmd\"," >>  %t.dir/Cmd/Package.swift