@@ -180,7 +180,7 @@ pub fn read_folders(
180180/// Given a projects' root folder and a `bsconfig::Source`, this recursively creates all the
181181/// sources in a flat list. In the process, it removes the children, as they are being resolved
182182/// 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
184184fn get_source_dirs ( source : bsconfig:: Source , sub_path : Option < PathBuf > ) -> AHashSet < bsconfig:: PackageSource > {
185185 let mut source_folders: AHashSet < bsconfig:: PackageSource > = AHashSet :: new ( ) ;
186186
@@ -276,7 +276,7 @@ pub fn read_dependency(
276276
277277/// # Make Package
278278
279- /// Given a bsconfig, reqursively finds all dependencies.
279+ /// Given a bsconfig, recursively finds all dependencies.
280280/// 1. It starts with registering dependencies and
281281/// prevents the operation for the ones which are already
282282/// registerd for the parent packages. Especially relevant for peerDependencies.
@@ -430,7 +430,7 @@ fn read_packages(project_root: &str, workspace_root: Option<String>) -> AHashMap
430430/// data from the config and pushes it forwards. Another thing is the 'type_', some files / folders
431431/// can be marked with the type 'dev'. Which means that they may not be around in the distributed
432432/// 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`
434434pub fn get_source_files (
435435 package_dir : & Path ,
436436 filter : & Option < regex:: Regex > ,
0 commit comments