diff --git a/apps/web/src/app/(docs)/docs/sandbox/page.mdx b/apps/web/src/app/(docs)/docs/sandbox/page.mdx index c338ae3d2e..6d0130bfd5 100644 --- a/apps/web/src/app/(docs)/docs/sandbox/page.mdx +++ b/apps/web/src/app/(docs)/docs/sandbox/page.mdx @@ -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. ```js diff --git a/packages/js-sdk/src/sandbox/index.ts b/packages/js-sdk/src/sandbox/index.ts index c23a447405..5e96937d79 100644 --- a/packages/js-sdk/src/sandbox/index.ts +++ b/packages/js-sdk/src/sandbox/index.ts @@ -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. * diff --git a/packages/js-sdk/src/sandbox/sandboxApi.ts b/packages/js-sdk/src/sandbox/sandboxApi.ts index 031aaf59c9..ecaae0ed73 100644 --- a/packages/js-sdk/src/sandbox/sandboxApi.ts +++ b/packages/js-sdk/src/sandbox/sandboxApi.ts @@ -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. diff --git a/packages/python-sdk/e2b/sandbox_async/main.py b/packages/python-sdk/e2b/sandbox_async/main.py index 091206bf5b..998f990006 100644 --- a/packages/python-sdk/e2b/sandbox_async/main.py +++ b/packages/python-sdk/e2b/sandbox_async/main.py @@ -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 """ diff --git a/packages/python-sdk/e2b/sandbox_sync/main.py b/packages/python-sdk/e2b/sandbox_sync/main.py index ebfd49d8f4..2144dd45dc 100644 --- a/packages/python-sdk/e2b/sandbox_sync/main.py +++ b/packages/python-sdk/e2b/sandbox_sync/main.py @@ -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 """