Skip to content

Commit 440c486

Browse files
committed
Remove superfluous full stop.
1 parent f80e755 commit 440c486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

05 - Refactoring/05 - Extract Field.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Greeter {
1414
public function greet($name) {
1515
// 1. Extract the string 'Hello' into a field named $_greeting so we are able to customize the greeting.
1616
// Use the "Initialize in class constructor" option to generate a constructor.
17-
// Make it a protected field..
17+
// Make it a protected field.
1818
return 'Hello' . ', ' . $name;
1919
}
2020
}

0 commit comments

Comments
 (0)