From 8fbe02e7e81fb1f6c90800df77587d6402c0fa08 Mon Sep 17 00:00:00 2001 From: I543501 Date: Fri, 11 Sep 2026 14:20:19 +0200 Subject: [PATCH] Fix indentation of l2distance heading and description Remove 2-space indent from `### \`l2distance\`` and its following paragraph to match the style of the surrounding vector-function entries. --- guides/ai/embeddings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/ai/embeddings.md b/guides/ai/embeddings.md index 9f2cda00c..45bad7292 100644 --- a/guides/ai/embeddings.md +++ b/guides/ai/embeddings.md @@ -124,9 +124,9 @@ function cosine_similarity (vector1, vector2) => Number [Learn more in the SAP HANA documentation](https://help.sap.com/docs/hana-cloud-database/sap-hana-cloud-sap-hana-database-sql-reference-guide/cosine-similarity-function-vector) {.learn-more} - ### `l2distance` {.method} +### `l2distance` {.method} - Computes the Euclidean distance (L2 norm) between `vector1` and `vector2`. Both vectors must have the same dimension. +Computes the Euclidean distance (L2 norm) between `vector1` and `vector2`. Both vectors must have the same dimension. ```tsx function l2distance (vector1, vector2) => Number