Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
Aif4thah committed Sep 19, 2024
1 parent 379f8de commit 47968a5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ Cargo.lock
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/
/.vscode
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributions

1. Pour contribuer, dites "comment vous avez fait", pas "comment il faut faire"
1. Pour contribuer, dites "comment vous avez fait", pas "comment il faudrait le faire"
2. Vérifier que le contenu proposé n'existe pas déjà
3. Que du texte / code / markdown. Pas de binaires, pas d'images.
3. Proposer une **pull request**
4 changes: 2 additions & 2 deletions README-fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ Par exemple, ouvrez le répertoire `DOJO-101` avec [VSCode](https://code.visuals

## 🤝 Contributions

* [Recommandations pour les contributeurs](./CONTRIBUTING.md)
* [Recommandations pour les contributeurs](https://github.com/Aif4thah/Dojo-101/blob/main/CONTRIBUTING.md)

## 🚨 Sécurité

* [À propos de la sécurité du projet](./SECURITY.md)
* [À propos de la sécurité du projet](https://github.com/Aif4thah/Dojo-101/blob/main/SECURITY.md)

## 🌱 Apprentissage

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ As an example, open `DOJO-101` folder with [VSCode](https://code.visualstudio.co

## 🤝 Contributions

* [Contributor guidelines](./CONTRIBUTING.md)
* [Contributor guidelines](https://github.com/Aif4thah/Dojo-101/blob/main/CONTRIBUTING.md)

## 🚨 Security

* [About project security](./SECURITY.md)
* [About project security](https://github.com/Aif4thah/Dojo-101/blob/main/SECURITY.md)

## 🌱 Learning

Expand Down
2 changes: 1 addition & 1 deletion quality/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() {
let mut files = vec![];
let mut non_markdown_files = vec![];

for entry in WalkDir::new(parent_dir).min_depth(2).max_depth(3) {
for entry in WalkDir::new(parent_dir).min_depth(1).max_depth(3) {
let entry = entry.unwrap();
let path = entry.path();

Expand Down

0 comments on commit 47968a5

Please sign in to comment.