Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/app/(docs)/docs/sandbox/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ sandbox.set_timeout(30)

## Retrieve sandbox information

You can retrieve sandbox information like sandbox id, template, metadata, started at/end at date by calling the `getInfo` method in JavaScript or `get_info` method in Python.
You can retrieve sandbox information like sandbox ID, template, metadata, started at/end at date by calling the `getInfo` method in JavaScript or `get_info` method in Python.

<CodeGroup>
```js
Expand Down
2 changes: 1 addition & 1 deletion packages/js-sdk/src/sandbox/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class Sandbox extends SandboxApi {
}

/**
* Get sandbox information like sandbox id, template, metadata, started at/end at date.
* Get sandbox information like sandbox ID, template, metadata, started at/end at date.
*
* @param opts connection options.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/js-sdk/src/sandbox/sandboxApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class SandboxApi {
}

/**
* Get sandbox information like sandbox id, template, metadata, started at/end at date.
* Get sandbox information like sandbox ID, template, metadata, started at/end at date.
*
* @param sandboxId sandbox ID.
* @param opts connection options.
Expand Down
2 changes: 1 addition & 1 deletion packages/python-sdk/e2b/sandbox_async/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ async def get_info( # type: ignore
request_timeout: Optional[float] = None,
) -> SandboxInfo:
"""
Get sandbox information like sandbox id, template, metadata, started at/end at date.
Get sandbox information like sandbox ID, template, metadata, started at/end at date.
:param request_timeout: Timeout for the request in **seconds**
:return: Sandbox info
"""
Expand Down
2 changes: 1 addition & 1 deletion packages/python-sdk/e2b/sandbox_sync/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def get_info( # type: ignore
request_timeout: Optional[float] = None,
) -> SandboxInfo:
"""
Get sandbox information like sandbox id, template, metadata, started at/end at date.
Get sandbox information like sandbox ID, template, metadata, started at/end at date.
:param request_timeout: Timeout for the request in **seconds**
:return: Sandbox info
"""
Expand Down
Loading