From 138834c3fa695b43b4c51aa4e1632aa4357d28ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Sj=C3=B6green?= Date: Sat, 19 Oct 2024 15:55:52 +0200 Subject: [PATCH] fix: Doc fmt --- .../src/ecmascript/builtins/data_view/abstract_operations.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova_vm/src/ecmascript/builtins/data_view/abstract_operations.rs b/nova_vm/src/ecmascript/builtins/data_view/abstract_operations.rs index 7d31df27..54e10e2d 100644 --- a/nova_vm/src/ecmascript/builtins/data_view/abstract_operations.rs +++ b/nova_vm/src/ecmascript/builtins/data_view/abstract_operations.rs @@ -58,7 +58,7 @@ pub(crate) fn make_data_view_with_buffer_witness_record( } } -/// [25.3.1.3 GetViewByteLength ( viewRecord )](https://tc39.es/ecma262/#sec-getviewbytelength) +/// ### [25.3.1.3 GetViewByteLength ( viewRecord )](https://tc39.es/ecma262/#sec-getviewbytelength) /// /// The abstract operation GetViewByteLength takes argument viewRecord /// (a DataView With Buffer Witness Record) and returns a non-negative integer. @@ -97,7 +97,7 @@ pub(crate) fn get_view_byte_length( (byte_length - byte_offset) as i64 } -/// [25.3.1.4 IsViewOutOfBounds ( viewRecord )](https://tc39.es/ecma262/#sec-isviewoutofbounds) +/// ### [25.3.1.4 IsViewOutOfBounds ( viewRecord )](https://tc39.es/ecma262/#sec-isviewoutofbounds) /// /// The abstract operation IsViewOutOfBounds takes argument viewRecord /// (a DataView With Buffer Witness Record) and returns a Boolean.