Skip to content

Commit 8bdc759

Browse files
committed
Fixed a typo in environment
1 parent 4229f60 commit 8bdc759

8 files changed

Lines changed: 8 additions & 8 deletions

content/04_111_model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
" These are shared across resources.\n",
117117
" \n",
118118
" env: simpy.Environment\n",
119-
" The current environent the simulation is running in\n",
119+
" The current environment the simulation is running in\n",
120120
" We use this to pause and restart the process after a delay.\n",
121121
"\n",
122122
" service_rng: numpy.random.Generator\n",

content/05_basic_results.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
" These are shared across resources.\n",
157157
" \n",
158158
" env: simpy.Environment\n",
159-
" The current environent the simulation is running in\n",
159+
" The current environment the simulation is running in\n",
160160
" We use this to pause and restart the process after a delay.\n",
161161
"\n",
162162
" service_rng: numpy.random.Generator\n",

content/06a_basic_results_exercise.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
" These are shared across resources.\n",
162162
" \n",
163163
" env: simpy.Environment\n",
164-
" The current environent the simulation is running in\n",
164+
" The current environment the simulation is running in\n",
165165
" We use this to pause and restart the process after a delay.\n",
166166
" \n",
167167
" '''\n",

content/06b_basic_results_solutions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
" These are shared across resources.\n",
158158
" \n",
159159
" env: simpy.Environment\n",
160-
" The current environent the simulation is running in\n",
160+
" The current environment the simulation is running in\n",
161161
" We use this to pause and restart the process after a delay.\n",
162162
" \n",
163163
" '''\n",

content/07_experiments.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@
445445
" A unique identifier for this caller\n",
446446
"\n",
447447
" env: simpy.Environment\n",
448-
" The current environent the simulation is running in\n",
448+
" The current environment the simulation is running in\n",
449449
" We use this to pause and restart the process after a delay.\n",
450450
"\n",
451451
" args: Experiment\n",

content/08_full_model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@
569569
" A unique identifier for this caller\n",
570570
"\n",
571571
" env: simpy.Environment\n",
572-
" The current environent the simulation is running in\n",
572+
" The current environment the simulation is running in\n",
573573
" We use this to pause and restart the process after a delay.\n",
574574
"\n",
575575
" args: Experiment\n",

content/09_time_weighted_calcs.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@
651651
" A unique identifier for this caller\n",
652652
"\n",
653653
" env: simpy.Environment\n",
654-
" The current environent the simulation is running in\n",
654+
" The current environment the simulation is running in\n",
655655
" We use this to pause and restart the process after a delay.\n",
656656
"\n",
657657
" args: Experiment\n",

content/basic_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def service(identifier, env, args):
264264
A unique identifier for this caller
265265
266266
env: simpy.Environment
267-
The current environent the simulation is running in
267+
The current environment the simulation is running in
268268
We use this to pause and restart the process after a delay.
269269
270270
args: Experiment

0 commit comments

Comments
 (0)