From 1db1dfe6a0d2c5910b51f1df1b078a21b3dc4d98 Mon Sep 17 00:00:00 2001 From: MatiasManevi Date: Tue, 24 Feb 2026 15:08:57 -0300 Subject: [PATCH] Remove empty lines --- wasm/README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wasm/README.md b/wasm/README.md index 1572e141..efc6d396 100644 --- a/wasm/README.md +++ b/wasm/README.md @@ -164,16 +164,12 @@ The object you get is a JavaScript proxy interface generated by [Emscripten’s export interface MjContactVec extends ClassHandle { /** Appends a new element to the end of the vector, increasing its length by one. */ push_back(_0: MjContact): void; - /** Resizes the vector to contain the specified number of elements, filling new slots with the provided value. */ resize(_0: number, _1: MjContact): void; - /** Returns the total number of elements currently stored in the vector. */ size(): number; - /** Retrieves the element at the specified index, or returns undefined if the index is out of bounds. */ get(_0: number): MjContact | undefined; - /** Overwrites the element at the specified index; returns true if successful or false if the index is invalid. */ set(_0: number, _1: MjContact): boolean; }