@@ -146,7 +146,7 @@ impl<'a> SplicerKind<'a> {
146
146
let mut manifest = ( * manifest) . clone ( ) ;
147
147
let manifest_dir = path
148
148
. parent ( )
149
- . expect ( "Every manifest should havee a parent directory" ) ;
149
+ . expect ( "Every manifest should have a parent directory" ) ;
150
150
151
151
// Link the sources of the root manifest into the new workspace
152
152
symlink_roots (
@@ -158,7 +158,7 @@ impl<'a> SplicerKind<'a> {
158
158
// Optionally install the cargo config after contents have been symlinked
159
159
Self :: setup_cargo_config ( & splicing_manifest. cargo_config , workspace_dir. as_std_path ( ) ) ?;
160
160
161
- // Add any additional depeendencies to the root package
161
+ // Add any additional dependencies to the root package
162
162
if !splicing_manifest. direct_packages . is_empty ( ) {
163
163
Self :: inject_direct_packages ( & mut manifest, & splicing_manifest. direct_packages ) ?;
164
164
}
@@ -186,7 +186,7 @@ impl<'a> SplicerKind<'a> {
186
186
) -> Result < SplicedManifest > {
187
187
let manifest_dir = path
188
188
. parent ( )
189
- . expect ( "Every manifest should havee a parent directory" ) ;
189
+ . expect ( "Every manifest should have a parent directory" ) ;
190
190
191
191
// Link the sources of the root manifest into the new workspace
192
192
symlink_roots (
@@ -255,7 +255,7 @@ impl<'a> SplicerKind<'a> {
255
255
let workspace_metadata = WorkspaceMetadata :: new ( splicing_manifest, installations) ?;
256
256
workspace_metadata. inject_into ( & mut manifest) ?;
257
257
258
- // Add any additional depeendencies to the root package
258
+ // Add any additional dependencies to the root package
259
259
if !splicing_manifest. direct_packages . is_empty ( ) {
260
260
Self :: inject_direct_packages ( & mut manifest, & splicing_manifest. direct_packages ) ?;
261
261
}
@@ -382,7 +382,7 @@ impl<'a> SplicerKind<'a> {
382
382
383
383
let manifest_dir = path
384
384
. parent ( )
385
- . expect ( "Every manifest should havee a parent directory" ) ;
385
+ . expect ( "Every manifest should have a parent directory" ) ;
386
386
387
387
let dest_package_dir = workspace_dir. join ( package_name) ;
388
388
0 commit comments