From 1f052d0d382dd7423a638fa7d3b7c6d8b12f0f7e Mon Sep 17 00:00:00 2001 From: James Murdza Date: Mon, 27 Oct 2025 16:33:56 -0700 Subject: [PATCH] Fix TypeScript comment syntax --- docs/content/docs/computer-sdk/commands.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/docs/computer-sdk/commands.mdx b/docs/content/docs/computer-sdk/commands.mdx index 2a4252dd..f1eb75ce 100644 --- a/docs/content/docs/computer-sdk/commands.mdx +++ b/docs/content/docs/computer-sdk/commands.mdx @@ -216,17 +216,17 @@ Direct file and directory manipulation: ```typescript - # File existence checks + // File existence checks await computer.interface.fileExists(path); // Check if file exists await computer.interface.directoryExists(path); // Check if directory exists - # File content operations + // File content operations await computer.interface.readText(path, "utf-8"); // Read file content await computer.interface.writeText(path, content, "utf-8"); // Write file content await computer.interface.readBytes(path); // Read file content as bytes await computer.interface.writeBytes(path, content); // Write file content as bytes - # File and directory management + // File and directory management await computer.interface.deleteFile(path); // Delete file await computer.interface.createDir(path); // Create directory await computer.interface.deleteDir(path); // Delete directory