Skip to content

Commit 66bf380

Browse files
committed
Fix some whitespace.
1 parent 7602db3 commit 66bf380

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/TestSite/Code/OOP.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ namespace Test {
99

1010
public interface IMammal {
1111
}
12-
12+
1313
public interface IPet {
14-
14+
1515
string Name {
1616
get;
1717
}
18-
18+
1919
string Owner {
2020
get;
2121
}
2222
}
23-
23+
2424
public class Animal {
25-
25+
2626
private string _species;
27-
27+
2828
public Animal(string species) {
2929
_species = species;
3030
}
@@ -104,7 +104,7 @@ public string Name {
104104
return _name;
105105
}
106106
}
107-
107+
108108
public ICharacter Star {
109109
get {
110110
return _star;

0 commit comments

Comments
 (0)