Skip to content

Commit 9073a2f

Browse files
committed
doc(BA-2752): Fix typo
1 parent 2f300d3 commit 9073a2f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

configs/agent/sample.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
## advertised-host = "192.168.1.100"
121121
# Port range for containers.
122122
# If multiple agents are used, user must ensure that the port ranges
123-
# don't overlap between the agent, else it may cause subtle issues
123+
# do not overlap between the agent, else it may cause subtle issues
124124
# late into the agent's runtime.
125125
port-range = [ 30000, 31000,]
126126
# Statistics type
@@ -174,7 +174,7 @@
174174
# the minimum disk space from the scratch disk allocation via loopback files.
175175
reserved-disk = "8G"
176176
# The alignment of the reported main memory size to absorb tiny deviations from
177-
# per-node firwmare/hardware settings. Recommended to be multiple of the
177+
# per-node firmware/hardware settings. Recommended to be multiple of the
178178
# page/hugepage size (e.g., 2 MiB).
179179
memory-align-size = "16M"
180180
# Resource allocation order
@@ -407,7 +407,7 @@
407407
## kernel-gid = 1000
408408
# Port range for containers.
409409
# If multiple agents are used, user must ensure that the port ranges
410-
# don't overlap between the agent, else it may cause subtle issues
410+
# do not overlap between the agent, else it may cause subtle issues
411411
# late into the agent's runtime.
412412
## port-range = [ 30000, 31000,]
413413
# Statistics type
@@ -451,7 +451,7 @@
451451
# the minimum disk space from the scratch disk allocation via loopback files.
452452
reserved-disk = 8589934592
453453
# The alignment of the reported main memory size to absorb tiny deviations from
454-
# per-node firwmare/hardware settings. Recommended to be multiple of the
454+
# per-node firmware/hardware settings. Recommended to be multiple of the
455455
# page/hugepage size (e.g., 2 MiB).
456456
memory-align-size = 16777216
457457
# Resource allocation order

src/ai/backend/agent/config/unified.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ class ContainerConfig(BaseConfigSchema):
811811
description=textwrap.dedent("""
812812
Port range for containers.
813813
If multiple agents are used, user must ensure that the port ranges
814-
don't overlap between the agent, else it may cause subtle issues
814+
do not overlap between the agent, else it may cause subtle issues
815815
late into the agent's runtime.
816816
"""),
817817
examples=[(30000, 31000)],
@@ -935,7 +935,7 @@ class OverridableContainerConfig(BaseConfigSchema):
935935
description=textwrap.dedent("""
936936
Port range for containers.
937937
If multiple agents are used, user must ensure that the port ranges
938-
don't overlap between the agent, else it may cause subtle issues
938+
do not overlap between the agent, else it may cause subtle issues
939939
late into the agent's runtime.
940940
"""),
941941
examples=[(30000, 31000)],
@@ -1061,7 +1061,7 @@ class ResourceConfig(BaseConfigSchema):
10611061
default=BinarySize.finite_from_str("16M"),
10621062
description=(
10631063
"The alignment of the reported main memory size to absorb tiny deviations "
1064-
"from per-node firwmare/hardware settings. "
1064+
"from per-node firmware/hardware settings. "
10651065
"Recommended to be multiple of the page/hugepage size (e.g., 2 MiB)."
10661066
),
10671067
examples=["2M", "32M"],

0 commit comments

Comments
 (0)