Skip to content

Commit

Permalink
Fix inter-docs references
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Sep 15, 2023
1 parent 3335166 commit be51ecb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/source/gui_handles.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ A handle is created for each GUI element that is added. Handles can be used to
read and write state.

When a GUI element is added to a server (for example, via
:func:`ViserServer.add_gui_text()`), state is synchronized between all connected
clients. When a GUI element is added to a client (for example, via
:func:`ClientHandle.add_gui_text()`), state is local to a specific client.
:func:`viser.ViserServer.add_gui_text()`), state is synchronized between all
connected clients. When a GUI element is added to a client (for example, via
:func:`viser.ClientHandle.add_gui_text()`), state is local to a specific client.

<!-- prettier-ignore-start -->

Expand Down
6 changes: 3 additions & 3 deletions docs/source/scene_handles.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ A handle is created for each object that is added to the scene. These can be
used to read and set state, as well as detect clicks.

When a scene node is added to a server (for example, via
:func:`ViserServer.add_frame()`), state is synchronized between all connected
clients. When a scene node is added to a client (for example, via
:func:`ClientHandle.add_frame()`), state is local to a specific client.
:func:`viser.ViserServer.add_frame()`), state is synchronized between all
connected clients. When a scene node is added to a client (for example, via
:func:`viser.ClientHandle.add_frame()`), state is local to a specific client.

<!-- prettier-ignore-start -->

Expand Down
1 change: 1 addition & 0 deletions src/viser/_icons_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Icon(enum.Enum):
https://tabler-icons.io/
https://github.com/tabler/tabler-icons
"""

ICON_123 = "123"
ICON_24_HOURS = "24-hours"
ICON_2FA = "2fa"
Expand Down

0 comments on commit be51ecb

Please sign in to comment.