Skip to content

Commit ef9de55

Browse files
committed
minor typo / cleanup
1 parent 42c842a commit ef9de55

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -174,19 +174,19 @@ be similar to this:
174174
$ heroku buildpacks:add heroku/nodejs -i 2
175175
# heroku buildpacks:add heroku/ruby -i 3
176176

177-
If you have multiple applications on Heroku you will need to append each of these with
178-
the identifier (_e.g._ `heroku buildpacks:clear -a YOUR_APP_NAME`).
177+
If you have multiple applications on Heroku you will need to append each of these
178+
with application's identifier (_e.g._ `heroku buildpacks:clear -a YOUR_APP_NAME`).
179179

180-
With each buildpack we are registering its index (the `-i` switch) in order to specify
181-
the order Heroku will load runtimes and execute bootstrapping code. It's important for
182-
the Python environment to be engaged first, as PyCall will need to be able to find it
183-
when Ruby-based processes start.
180+
With each buildpack we are registering its index (the `-i` switch) in order to
181+
specify the order Heroku will load runtimes and execute bootstrapping code. It's
182+
important for the Python environment to be engaged first, as PyCall will need to
183+
be able to find it when Ruby-based processes start.
184184

185185
Once you have set up your buildpacks, and have commited both `requirements.txt` and
186186
`runtime.txt` files to git, deploy your Heroku application as your normally would.
187187
The Python bootstrapping process will appear in the log first, followed by the Ruby
188-
and so on. PyCall should now be able to successfully call Python functions from within
189-
the Heroku environnent.
188+
and so on. PyCall should now be able to successfully call Python functions from
189+
within the Heroku environment.
190190

191191
NB It is also possible to specify buildpacks within Docker images on Heroku.
192192
See Heroku's [documentation on using Docker Images](https://devcenter.heroku.com/articles/build-docker-images-heroku-yml).

0 commit comments

Comments
 (0)