From c49a920941d5ba1d17f4f79a0f72944aeeeaafcc Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 23 May 2026 17:32:56 +0000 Subject: [PATCH] [docs: autonomous-visual-synthesis] style(ui): enforce deterministic Best-Practise standard in frontend documentation Co-authored-by: beginwebdev2002 <102213457+beginwebdev2002@users.noreply.github.com> --- frontend/angular/components-signals.md | 2 +- frontend/javascript/testing.md | 2 +- frontend/react/performance.md | 2 +- frontend/typescript/objects-functions.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/angular/components-signals.md b/frontend/angular/components-signals.md index 31adc19..081bdac 100644 --- a/frontend/angular/components-signals.md +++ b/frontend/angular/components-signals.md @@ -26,7 +26,7 @@ The `@Input()` decorator operates outside the Signals reactivity system. Changes title = input(''); ``` -### Structural Comparison: Signals vs RxJS +### ⚖️ Structural Comparison: Signals vs RxJS | Feature | Signals (`signal`, `computed`) | RxJS (`BehaviorSubject`, `Observable`) | | :--- | :--- | :--- | diff --git a/frontend/javascript/testing.md b/frontend/javascript/testing.md index 1ba4b2b..e909bdf 100644 --- a/frontend/javascript/testing.md +++ b/frontend/javascript/testing.md @@ -59,7 +59,7 @@ test('update user', () => { }); ``` -### Structural Comparison: Unit Testing vs Integration Testing vs E2E +### ⚖️ Structural Comparison: Unit Testing vs Integration Testing vs E2E | Feature | Unit Testing | Integration Testing | End-to-End (E2E) Testing | | :--- | :--- | :--- | :--- | diff --git a/frontend/react/performance.md b/frontend/react/performance.md index 795a65d..7565c1a 100644 --- a/frontend/react/performance.md +++ b/frontend/react/performance.md @@ -51,7 +51,7 @@ function UserList({ users }) { } ``` -### Structural Comparison: Manual Memoization vs React Compiler +### ⚖️ Structural Comparison: Manual Memoization vs React Compiler | Feature | Manual Memoization (`useMemo`, `useCallback`) | React Compiler | | :--- | :--- | :--- | diff --git a/frontend/typescript/objects-functions.md b/frontend/typescript/objects-functions.md index 1beff2d..2c91100 100644 --- a/frontend/typescript/objects-functions.md +++ b/frontend/typescript/objects-functions.md @@ -144,7 +144,7 @@ abstract class BaseService { } ``` -### Structural Comparison: Abstract Classes vs Interfaces +### ⚖️ Structural Comparison: Abstract Classes vs Interfaces | Feature | Abstract Classes | Interfaces | | :--- | :--- | :--- |