From 21e33aaac21bda4c39d737ed88de7d6456bea7ec Mon Sep 17 00:00:00 2001 From: Maic Siemering Date: Thu, 2 Oct 2025 09:10:02 +0200 Subject: [PATCH] Replace pydom with pyscript.web --- docs/user-guide/dom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/dom.md b/docs/user-guide/dom.md index 1859cb8..544b9ae 100644 --- a/docs/user-guide/dom.md +++ b/docs/user-guide/dom.md @@ -10,7 +10,7 @@ There are currently two ways to interact with the DOM: 1. Through the [foreign function interface](#ffi) (FFI) to interact with objects found in the browser's `globalThis` or `document` objects. -2. Through the [`pydom` module](#pydom) that acts as a Pythonic wrapper around +2. Through the [`pyscript.web` module](#pyscriptweb) that acts as a Pythonic wrapper around the FFI and comes as standard with PyScript. ## FFI