Skip to content

Commit ab919ef

Browse files
committed
fix typos
1 parent 762b8bc commit ab919ef

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ nginx/
124124
2 directories, 3 files
125125
```
126126

127-
If you're using a password make sure to uncomment the line in the ngnix config file (`nginx/production_nginx.conf`) for that password file.
127+
If you're using a password make sure to uncomment the line in the nginx config file (`nginx/production_nginx.conf`) for that password file.
128128

129129
```nginx
130130
server {
@@ -138,7 +138,7 @@ server {
138138
}
139139
```
140140

141-
Once you've completed your configuring, you can start the application with the `launch.sh` script. It will export the variables set in the `.env` file to your enviroment and based on your choices launch ezBIDS at `localhost:3000` or `https://yourhostname/`
141+
Once you've completed your configuring, you can start the application with the `launch.sh` script. It will export the variables set in the `.env` file to your environment and based on your choices launch ezBIDS at `localhost:3000` or `https://yourhostname/`
142142

143143
If you're switching between nginx or the localhost option make sure to rebuild the
144144
containers with:

handler/find_img_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from presort_dicoms import presort
88

99
# presort can slow down ezBIDS as it examines every dicom, it's enabled/disabled
10-
# by setting the PRESORT environment varibable to "true" or ""
10+
# by setting the PRESORT environment variable to "true" or ""
1111
presort_enabled = bool(os.getenv('PRESORT', 'false').lower() == 'true')
1212
presort_enabled_pet = bool(os.getenv('PRESORT_PET', 'false').lower() == 'true')
1313

launch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# This is the main entry point launching a local/on premises install of ezBIDS.
44
# Environment variables are loaded from the .env file, then either an SSL HTTPS
5-
# Nginx routed version of ezBIDS is launched or a plain "develoment" version using
5+
# Nginx routed version of ezBIDS is launched or a plain "development" version using
66
# docker's built in network. It's recommended to use the HTTPS version as browsers
77
# are getting more and more particular about CORS (Cross Origin Requests).
88

0 commit comments

Comments
 (0)