Skip to content

Commit b973d1c

Browse files
committed
Fix typo in docs.
Signed-off-by: Manoel Campos <[email protected]>
1 parent f905f15 commit b973d1c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/java/org/cloudsimplus/examples/BasicFirstExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
public class BasicFirstExample {
5757
private static final int HOSTS = 1;
5858
private static final int HOST_PES = 8;
59-
private static final int HOST_MIPS = 1000; // Milion Instructions per Second (MIPS)
59+
private static final int HOST_MIPS = 1000; // Million Instructions per Second (MIPS)
6060
private static final int HOST_RAM = 2048; //in Megabytes
6161
private static final long HOST_BW = 10_000; //in Megabits/s
6262
private static final long HOST_STORAGE = 1_000_000; //in Megabytes
@@ -66,7 +66,7 @@ public class BasicFirstExample {
6666

6767
private static final int CLOUDLETS = 4;
6868
private static final int CLOUDLET_PES = 2;
69-
private static final int CLOUDLET_LENGTH = 10_000; // Milion Instructions (MI)
69+
private static final int CLOUDLET_LENGTH = 10_000; // Million Instructions (MI)
7070

7171
private final CloudSimPlus simulation;
7272
private final DatacenterBroker broker0;

src/main/java/org/cloudsimplus/examples/VmBootTimeAndOverheadExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
public class VmBootTimeAndOverheadExample {
5656
private static final int HOSTS = 1;
5757
private static final int HOST_PES = 8;
58-
private static final int HOST_MIPS = 1000; // Milion Instructions per Second (MIPS)
58+
private static final int HOST_MIPS = 1000; // Million Instructions per Second (MIPS)
5959
private static final int HOST_RAM = 2048; //in Megabytes
6060
private static final long HOST_BW = 10_000; //in Megabits/s
6161
private static final long HOST_STORAGE = 1_000_000; //in Megabytes
@@ -65,7 +65,7 @@ public class VmBootTimeAndOverheadExample {
6565

6666
private static final int CLOUDLETS = 2;
6767
private static final int CLOUDLET_PES = 2;
68-
private static final int CLOUDLET_LENGTH = 10_000; // Milion Instructions (MI)
68+
private static final int CLOUDLET_LENGTH = 10_000; // Million Instructions (MI)
6969

7070
/**
7171
* Defines the time (in seconds) each VM will take to boot up.

src/main/java/org/cloudsimplus/examples/brokers/DatacenterBrokerBatchVmCreationRequestExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
public class DatacenterBrokerBatchVmCreationRequestExample {
6363
private static final int HOSTS = 2;
6464
private static final int HOST_PES = 8;
65-
private static final int HOST_MIPS = 1000; // Milion Instructions per Second (MIPS)
65+
private static final int HOST_MIPS = 1000; // Million Instructions per Second (MIPS)
6666
private static final int HOST_RAM = 2048; //in Megabytes
6767
private static final long HOST_BW = 10_000; //in Megabits/s
6868
private static final long HOST_STORAGE = 1_000_000; //in Megabytes
@@ -71,7 +71,7 @@ public class DatacenterBrokerBatchVmCreationRequestExample {
7171
private static final int VM_PES = 4;
7272

7373
private static final int CLOUDLET_PES = 2;
74-
private static final int CLOUDLET_LENGTH = 10_000; // Milion Instructions (MI)
74+
private static final int CLOUDLET_LENGTH = 10_000; // Million Instructions (MI)
7575

7676
private final CloudSimPlus simulation;
7777
private final DatacenterBroker broker0;

0 commit comments

Comments
 (0)