Skip to content

Commit b63fe15

Browse files
yurekamiclaude
andauthored
docs: fix typos in code comments and messages (#4724)
## Summary Fixed several typos in code comments and error messages: - `verl/models/transformers/qwen3_vl.py`: seperate → separate - `recipe/fully_async_policy/checkpoint_engine.py`: paramter → parameter - `recipe/collabllm/collabllm_interation.py`: invaild → invalid - `recipe/vla/envs/isaac_env/isaac_env.py`: Recieved → Received ## Test Plan - [x] No functional changes, only typo fixes in comments and log messages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: yurekami <[email protected]> Co-authored-by: Claude Opus 4.5 <[email protected]>
1 parent f53e2e5 commit b63fe15

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

recipe/collabllm/collabllm_interation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ async def generate_response(
172172
break
173173
else:
174174
logger.warning(
175-
f"[CollabLLMInteraction] got an invaild response {response} full_response {full_response}. \
175+
f"[CollabLLMInteraction] got an invalid response {response} full_response {full_response}. \
176176
Retrying..."
177177
)
178178
continue

recipe/fully_async_policy/checkpoint_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def register_checkpoint(
311311
)
312312
print(
313313
f"set checkpoint_engine device buffer size: {self.device_buffer_size_M}M, "
314-
f"and finally set it to {bucket_size >> 20}M considering the largest paramter tensor size"
314+
f"and finally set it to {bucket_size >> 20}M considering the largest parameter tensor size"
315315
)
316316
self.bucket_size = bucket_size
317317

recipe/vla/envs/isaac_env/isaac_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def _init_env(self, task_id=0):
107107
if self.task_suite_name.startswith("libero"):
108108
self.task_descriptions = self.env.cfg.libero_config.task_info["language_instruction"]
109109
assert self.env_cfg.osc_type == "pose_rel", (
110-
f"Only pose_rel osc type is supported for libero. Recieved: {self.env_cfg.osc_type}"
110+
f"Only pose_rel osc type is supported for libero. Received: {self.env_cfg.osc_type}"
111111
)
112112
else:
113113
raise ValueError(f"Task suite {self.task_suite_name} is not supported.")

verl/models/transformers/qwen3_vl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def get_rope_index(
4646
video_token_id = processor.video_token_id
4747
vision_start_token_id = processor.vision_start_token_id
4848

49-
# Since we use timestamps to seperate videos,
49+
# Since we use timestamps to separate videos,
5050
# like <t1> <vision_start> <frame1> <vision_end> <t2> <vision_start> <frame2> <vision_end>,
5151
# the video_grid_thw should also be split
5252
if video_grid_thw is not None:

0 commit comments

Comments
 (0)