Skip to content

Commit 0ff5434

Browse files
committed
Update README.md
1 parent 0efe50c commit 0ff5434

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Test():
1818
def display(self):
1919
return "Hi, " + self.name
2020

21-
def random\_number(self, start, end):
21+
def random_number(self, start, end):
2222
return random.randint(start, end)
2323
```
2424

@@ -27,7 +27,7 @@ You can use it from C# like this
2727

2828
```csharp
2929
var engine = Python.CreateEngine ();
30-
ICollection\<string\> searchPaths = engine.GetSearchPaths ();
30+
ICollection<string> searchPaths = engine.GetSearchPaths ();
3131

3232
//Path to the folder of greeter.py
3333
searchPaths.Add (Application.dataPath);

0 commit comments

Comments
 (0)