@@ -180,7 +180,7 @@ pub fn read_folders(
180
180
/// Given a projects' root folder and a `bsconfig::Source`, this recursively creates all the
181
181
/// sources in a flat list. In the process, it removes the children, as they are being resolved
182
182
/// because of the recursiveness. So you get a flat list of files back, retaining the type_ and
183
- /// wether it needs to recurse into all structures
183
+ /// whether it needs to recurse into all structures
184
184
fn get_source_dirs ( source : bsconfig:: Source , sub_path : Option < PathBuf > ) -> AHashSet < bsconfig:: PackageSource > {
185
185
let mut source_folders: AHashSet < bsconfig:: PackageSource > = AHashSet :: new ( ) ;
186
186
@@ -276,7 +276,7 @@ pub fn read_dependency(
276
276
277
277
/// # Make Package
278
278
279
- /// Given a bsconfig, reqursively finds all dependencies.
279
+ /// Given a bsconfig, recursively finds all dependencies.
280
280
/// 1. It starts with registering dependencies and
281
281
/// prevents the operation for the ones which are already
282
282
/// registerd for the parent packages. Especially relevant for peerDependencies.
@@ -430,7 +430,7 @@ fn read_packages(project_root: &str, workspace_root: Option<String>) -> AHashMap
430
430
/// data from the config and pushes it forwards. Another thing is the 'type_', some files / folders
431
431
/// can be marked with the type 'dev'. Which means that they may not be around in the distributed
432
432
/// NPM package. The file reader allows for this, just warns when this happens.
433
- /// TODO -> Check wether we actually need the `fs::Metadata`
433
+ /// TODO -> Check whether we actually need the `fs::Metadata`
434
434
pub fn get_source_files (
435
435
package_dir : & Path ,
436
436
filter : & Option < regex:: Regex > ,
0 commit comments