corrected typos

This commit is contained in:
Chandan Rai
2017-08-31 01:50:33 +05:30
parent f0a1af0c46
commit 08cc50e875
7 changed files with 9 additions and 9 deletions

View File

@ -36,7 +36,7 @@ In Java, it can be easily done by implementing `Cloneable` and overriding `clone
```
class Sheep implements Cloneable {
privage String name;
private String name;
public Sheep(String name) { this.name = name; }
public void setName(String name) { this.name = name; }
public String getName() { return name; }