Skip to content

Commit f52aa98

Browse files
authored
Fixes minor typos in the documentation (#3584)
# Description Fixes minor typos in the documentation. ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
1 parent d767287 commit f52aa98

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

isaaclab.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ setup_conda_env() {
346346
'export ISAACLAB_PATH='${ISAACLAB_PATH}'' \
347347
'alias isaaclab='${ISAACLAB_PATH}'/isaaclab.sh' \
348348
'' \
349-
'# show icon if not runninng headless' \
349+
'# show icon if not running headless' \
350350
'export RESOURCE_NAME="IsaacSim"' \
351351
'' > ${CONDA_PREFIX}/etc/conda/activate.d/setenv.sh
352352

scripts/environments/state_machine/open_cabinet_sm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def __init__(self, dt: float, num_envs: int, device: torch.device | str = "cpu",
206206
self.des_ee_pose = torch.zeros((self.num_envs, 7), device=self.device)
207207
self.des_gripper_state = torch.full((self.num_envs,), 0.0, device=self.device)
208208

209-
# approach infront of the handle
209+
# approach in front of the handle
210210
self.handle_approach_offset = torch.zeros((self.num_envs, 7), device=self.device)
211211
self.handle_approach_offset[:, 0] = -0.1
212212
self.handle_approach_offset[:, -1] = 1.0 # warp expects quaternion as (x, y, z, w)

scripts/reinforcement_learning/ray/tuner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def setup(self, config: dict) -> None:
8080
self.experiment = None
8181

8282
def reset_config(self, new_config: dict):
83-
"""Allow environments to be re-used by fetching a new invocation command"""
83+
"""Allow environments to be reused by fetching a new invocation command"""
8484
self.setup(new_config)
8585
return True
8686

0 commit comments

Comments
 (0)