Skip to content

Commit 7abab80

Browse files
authored
Merge pull request #8 from algorithmiaio/aslisabanci-minor-edits
Just renaming changes - easiest PR ever!
2 parents e277844 + 78453ad commit 7abab80

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def apply(input):
1717
# This turns your library code into an algorithm that can run on the platform.
1818
# If you intend to use loading operations, remember to pass a `load` function as a second variable.
1919
algorithm = ADK(apply)
20-
# The 'serve()' function actually starts the algorithm, you can follow along in the source code
20+
# The 'init()' function actually starts the algorithm, you can follow along in the source code
2121
# to see how everything works.
2222
algorithm.init("Algorithmia")
2323

@@ -78,7 +78,7 @@ def apply(input):
7878
# This turns your library code into an algorithm that can run on the platform.
7979
# If you intend to use loading operations, remember to pass a `load` function as a second variable.
8080
algorithm = ADK(apply)
81-
# The 'serve()' function actually starts the algorithm, you can follow along in the source code
81+
# The 'init()' function actually starts the algorithm, you can follow along in the source code
8282
# to see how everything works.
8383
algorithm.init("Algorithmia")
8484

@@ -257,4 +257,4 @@ Verify that it works on pytest, then:
257257
```commandline
258258
python -m twine upload -r pypi dist/*
259259
```
260-
and you're done :)
260+
and you're done :)

examples/hello_world/src/Algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ def apply(input):
1313
# This turns your library code into an algorithm that can run on the platform.
1414
# If you intend to use loading operations, remember to pass a `load` function as a second variable.
1515
algorithm = ADK(apply)
16-
# The 'serve()' function actually starts the algorithm, you can follow along in the source code
16+
# The 'init()' function actually starts the algorithm, you can follow along in the source code
1717
# to see how everything works.
1818
algorithm.init("Algorithmia")

0 commit comments

Comments
 (0)