From cfae767f0a5198b00e3b145f0e45faad648d2057 Mon Sep 17 00:00:00 2001 From: Edie Lemoine Date: Thu, 7 Sep 2023 09:28:15 +0200 Subject: [PATCH] docs: update developer guide --- DEVELOPERS.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/DEVELOPERS.md b/DEVELOPERS.md index a2f46e7c..d156666b 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -89,12 +89,12 @@ graph TD QProdCode{{"Does this change production code?\n(e.g. code in the `src` directory)"}} QFunctionalChange{{"Does this change functionality for the end user?"}} - QIsFix{{"Is this something that has worked before?"}} + QIsFix{{"Has or should this have worked before?"}} QIsBuild{{"Is this change related to the build process?"}} QIsPerf{{"Does this improve performance?"}} QIsRefactor{{"Is code refactored?\n(e.g. renaming or moving variables, etc.)"}} - QIsDoc{{"Is this a documentation change?"}} - QIsTest{{"Is this a change in test code?"}} + QIsDoc{{"Does this change documentation?"}} + QIsTest{{"Does this change test code?"}} Start .-> QProdCode @@ -106,13 +106,13 @@ graph TD QFunctionalChange --> |Yes| QIsFix QFunctionalChange --> |No| QIsPerf - + QIsFix --> |Yes| Fix QIsFix --> |No| Feat QIsBuild --> |Yes| Build QIsBuild --> |No| QIsDoc - + QIsDoc --> |Yes| Docs QIsDoc --> |No| Chore