Skip to content

Commit b86bd01

Browse files
author
Ajeesh Mohan
committed
Fixing casing for the SRP post
1 parent 7c714f3 commit b86bd01

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

_posts/2013-04-02-clean-code-SRP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: "Clean Code : Single Responsibility Principle"
3+
title: "Clean Code: Single Responsibility Principle"
44
category: Clean-Code
55
forreview: false
66
filename: "2013-04-02-clean-code-SRP.md"
@@ -10,9 +10,9 @@ I have been writing code for more than a decade now. When I take a look at code
1010

1111
With this blog post, I'm kicking-off a series called "Clean Code" that tries to document my learnings in my struggle to write better, readable, maintainable code.
1212

13-
#Single responsibility principle
13+
#Single Responsibility Principle
1414

15-
Single responsibility principle(SRP) is one of those core principles that will vastly improve the way you structure your code. It is part of the [SOLID principles][SOLID] introduced by Robert C Martin. [Wikipedia defines SRP][] as:
15+
Single Responsibility Principle(SRP) is one of those core principles that will vastly improve the way you structure your code. It is part of the [SOLID principles][SOLID] introduced by Robert C Martin. [Wikipedia defines SRP][] as:
1616

1717
> Every class should have a single responsibility, and that responsibility should be entirely encapsulated by the class. All its services should be narrowly aligned with that responsibility.
1818

0 commit comments

Comments
 (0)