Skip to content

Commit 8936a5a

Browse files
authored
Fixes typos in development.rst (#2181)
# Description Fixed typos in the documentation (development.rst). ## Type of change - Bug fix (non-breaking change which fixes an issue) - This change requires a documentation update ## Screenshots Not applicable. ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] 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 - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: Victor Khaustov <3192677+vi3itor@users.noreply.github.com>
1 parent 98a8b30 commit 8936a5a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ Guidelines for modifications:
9191
* Shafeef Omar
9292
* Shundo Kishi
9393
* Stephan Pleines
94+
* Victor Khaustov
9495
* Vladimir Fokow
9596
* Wei Yang
9697
* Xavier Nal

docs/source/overview/developer-guide/development.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Extension Development
22
=======================
33

4-
Everything in Omniverse is either an extension, or a collection of extensions (an application). They are
4+
Everything in Omniverse is either an extension or a collection of extensions (an application). They are
55
modularized packages that form the atoms of the Omniverse ecosystem. Each extension
66
provides a set of functionalities that can be used by other extensions or
77
standalone applications. A folder is recognized as an extension if it contains
@@ -32,12 +32,12 @@ for the extension with more detailed information about the extension and a CHANG
3232
file that contains the changes made to the extension in each version.
3333

3434
The ``<extension-name>`` directory contains the main python package for the extension.
35-
It may also contains the ``scripts`` directory for keeping python-based applications
36-
that are loaded into Omniverse when then extension is enabled using the
35+
It may also contain the ``scripts`` directory for keeping python-based applications
36+
that are loaded into Omniverse when the extension is enabled using the
3737
`Extension Manager <https://docs.omniverse.nvidia.com/kit/docs/kit-manual/latest/guide/extensions_basic.html>`__.
3838

3939
More specifically, when an extension is enabled, the python module specified in the
40-
``config/extension.toml`` file is loaded and scripts that contains children of the
40+
``config/extension.toml`` file is loaded and scripts that contain children of the
4141
:class:`omni.ext.IExt` class are executed.
4242

4343
.. code:: python
@@ -60,7 +60,7 @@ More specifically, when an extension is enabled, the python module specified in
6060
6161
While loading extensions into Omniverse happens automatically, using the python package
6262
in standalone applications requires additional steps. To simplify the build process and
63-
avoiding the need to understand the `premake <https://premake.github.io/>`__
63+
avoid the need to understand the `premake <https://premake.github.io/>`__
6464
build system used by Omniverse, we directly use the `setuptools <https://setuptools.readthedocs.io/en/latest/>`__
6565
python package to build the python module provided by the extensions. This is done by the
6666
``setup.py`` file in the extension directory.

0 commit comments

Comments
 (0)