From f60ee7051dfbc0e9613e72f12d797c85e76c117b Mon Sep 17 00:00:00 2001 From: AbelHutten Date: Sun, 8 Oct 2023 15:16:55 +0200 Subject: [PATCH] Fix spelling and leftover SimJulia reference. --- docs/src/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorial.md b/docs/src/tutorial.md index ee94528..40774f9 100755 --- a/docs/src/tutorial.md +++ b/docs/src/tutorial.md @@ -2,7 +2,7 @@ ## Basic Concepts -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. +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. 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. @@ -80,7 +80,7 @@ Start parking at 14.0 DocTestSetup = nothing ``` -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. +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. 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.