Skip to content

Commit ca58e6d

Browse files
committed
Fixed a typo in word identifier
1 parent b9802f1 commit ca58e6d

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
@@ -109,7 +109,7 @@
109109
" ------\n",
110110
" \n",
111111
" identifier: int \n",
112-
" A unique identifer for this caller\n",
112+
" A unique identifier for this caller\n",
113113
" \n",
114114
" operators: simpy.Resource\n",
115115
" The pool of call operators that answer calls\n",

content/05_basic_results.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
" ------\n",
150150
" \n",
151151
" identifier: int \n",
152-
" A unique identifer for this caller\n",
152+
" A unique identifier for this caller\n",
153153
" \n",
154154
" operators: simpy.Resource\n",
155155
" The pool of call operators that answer calls\n",

content/06a_basic_results_exercise.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
" ------\n",
155155
" \n",
156156
" identifier: int \n",
157-
" A unique identifer for this caller\n",
157+
" A unique identifier for this caller\n",
158158
" \n",
159159
" operators: simpy.Resource\n",
160160
" The pool of call operators that answer calls\n",

content/06b_basic_results_solutions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
" ------\n",
151151
" \n",
152152
" identifier: int \n",
153-
" A unique identifer for this caller\n",
153+
" A unique identifier for this caller\n",
154154
" \n",
155155
" operators: simpy.Resource\n",
156156
" The pool of call operators that answer calls\n",

content/07_experiments.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
" ------\n",
443443
"\n",
444444
" identifier: int\n",
445-
" A unique identifer for this caller\n",
445+
" A unique identifier for this caller\n",
446446
"\n",
447447
" env: simpy.Environment\n",
448448
" The current environent the simulation is running in\n",

content/08_full_model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@
566566
" Params:\n",
567567
" ------\n",
568568
" identifier: int\n",
569-
" A unique identifer for this caller\n",
569+
" A unique identifier for this caller\n",
570570
"\n",
571571
" env: simpy.Environment\n",
572572
" The current environent the simulation is running in\n",

content/09_time_weighted_calcs.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@
648648
" Params:\n",
649649
" ------\n",
650650
" identifier: int\n",
651-
" A unique identifer for this caller\n",
651+
" A unique identifier for this caller\n",
652652
"\n",
653653
" env: simpy.Environment\n",
654654
" The current environent the simulation is running in\n",

content/basic_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def service(identifier, env, args):
261261
Params:
262262
------
263263
identifier: int
264-
A unique identifer for this caller
264+
A unique identifier for this caller
265265
266266
env: simpy.Environment
267267
The current environent the simulation is running in

0 commit comments

Comments
 (0)