Skip to content

Commit 00e2a10

Browse files
authored
Fix spelling and leftover SimJulia reference. (#103)
1 parent bd473f4 commit 00e2a10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Basic Concepts
44

5-
Simjulia is a discrete-event simulation library. The behavior of active components (like vehicles, customers or messages) is modeled with processes. All processes live in an environment. They interact with the environment and with each other via events.
5+
ConcurrentSim is a discrete-event simulation library. The behavior of active components (like vehicles, customers or messages) is modeled with processes. All processes live in an environment. They interact with the environment and with each other via events.
66

77
Processes are described by `@resumable` functions. You can call them process function. During their lifetime, they create events and `@yield` them in order to wait for them to be triggered.
88

@@ -80,7 +80,7 @@ Start parking at 14.0
8080
DocTestSetup = nothing
8181
```
8282

83-
The first thing we need to do is to create an environment, e.g. an instance of `Simulation`. The macro `@process` having as argument a car process function call creates a process that is initialised and added to the environment automatically.
83+
The first thing we need to do is to create an environment, e.g. an instance of `Simulation`. The macro `@process` having as argument a car process function call creates a process that is initialized and added to the environment automatically.
8484

8585
Note, that at this time, none of the code of our process function is being executed. Its execution is merely scheduled at the current simulation time.
8686

0 commit comments

Comments
 (0)