Skip to content

Commit 7e95671

Browse files
committed
fix typo in docs - simulating.rst
1 parent 70483f1 commit 7e95671

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Features/simulating.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ This method simulates the system from an empty system. The simulation terminates
5454
N = ciw.create_network(params)
5555
Q = ciw.Simulation(N)
5656

57-
Q.simulate_until_maxcustomers(20, method='Finish')
57+
Q.simulate_until_max_customers(20, method='Finish')
5858

5959
There are three methods of simulating for a maximum number of customers, specified by the :code:`method` keyword argument:
6060
- Finish: Simulates until :code:`max_customers` has reached the Exit Node.
6161
- Arrive: Simulates until :code:`max_customers` have spawned at the Arrival Node.
62-
- Accept: Simulates until :code:`max_customers` have been spawned and accepted (not rejected) at the Arrival Node.
62+
- Accept: Simulates until :code:`max_customers` have been spawned and accepted (not rejected) at the Arrival Node.
6363

6464
Keyword arguments:
6565
- :code:`max_customers`: REQUIRED. The maximum number of customers.

0 commit comments

Comments
 (0)