Skip to content

Commit a8d3f5d

Browse files
LuzkanGitVersioniser
authored andcommitted
[1.0.12] πŸ”€βœοΈ request #3 from calypsow777/patch-1
πŸ”€ request #3 from calypsow777/patch-1 ✏️ fix(binary-operator-in-name.md): correct typo #patch
2 parents b8dd4a3 + 6e0a351 commit a8d3f5d

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

β€Ž.markdownlint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"MD033": false,
66
"MD036": false,
77
"MD041": false,
8-
"MD026": false
8+
"MD026": false,
9+
"MD012": false
910
}

β€Žcontent/smells/binary-operator-in-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ history:
6262

6363
This is straightforward: method or function names that have binary bitwise operators like `AND` and `OR` are obvious candidates for undisguised violators of the **Single Responsibility Principle** right out there in the open. If the method name has _`and`_ in its name and then it does two different things, then one might ask why it is not split in half to do these two other things separately? Moreover, if the method name has _`or`_ then it not only does two different things but also, most likely, it has a stinky [Flag Argument](./flag-argument.md) which is yet another Code Smell.
6464

65-
This code smell might happen not only in the method names, even though it is the place to look for in the vast majority of this kind of smell, but also in thevariables.
65+
This code smell might happen not only in the method names, even though it is the place to look for in the vast majority of this kind of smell, but also in the variables.
6666

6767
### Problems:
6868

β€Ždocs/CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ All notable changes to this project will be documented in this file.
66

77
---
88

9+
## [[`1.0.12`]] - 2022-08-21
10+
11+
### Other
12+
13+
- Update binary-operator-in-name.md
14+
15+
### Merge Branches
16+
17+
- request #3 from calypsow777/patch-1
18+
19+
### Typo
20+
21+
- fix(binary-operator-in-name.md): correct typo #patch
22+
23+
24+
925
## [[`1.0.10`]] - 2022-08-15
1026

1127
### Architecture
@@ -16,8 +32,6 @@ All notable changes to this project will be documented in this file.
1632

1733
- Updated [`README.md`](../README.md) with new directory. #patch
1834

19-
20-
2135
## [[`1.0.9`]] - 2022-08-14
2236

2337
### Continuous Integration
@@ -179,3 +193,4 @@ All notable changes to this project will be documented in this file.
179193
[1.0.7]: https://github.com/Luzkan/smells/releases/tag/1.0.7
180194
[`1.0.9`]: https://github.com/Luzkan/smells/releases/tag/1.0.9
181195
[`1.0.10`]: https://github.com/Luzkan/smells/releases/tag/1.0.10
196+
[`1.0.12`]: https://github.com/Luzkan/smells/releases/tag/1.0.12

β€Žpackage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "smells",
33
"description": "Code Smells Catalog",
4-
"version": "1.0.10",
4+
"version": "1.0.12",
55
"author": "Marcel Jerzyk",
66
"dependencies": {
77
"@emotion/react": "^11.8.2",

0 commit comments

Comments
Β (0)