From 28283265c7e58344a5cfff766e67e7dafc13c225 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sat, 15 Nov 2025 15:29:40 +0100 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3ab0d6..e8703ff 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Crafter.CppDOM is a C++ library that exposes the browser DOM api's to C++ WebAss The library provides three main classes for working with HTML elements, all representing a diffrent ownership model: ## HtmlElementPtr -`HtmlElementView` is the base class that provides read and write access to HTML element properties and methods, but does **not** own **anything**. Its the same as a C++ * and will not peform any cleanups. +`HtmlElementPtr` is the base class that provides read and write access to HTML element properties and methods, but does **not** own **anything**. Its the same as a C++ * and will not peform any cleanups. ## HtmlElementView `HtmlElementView` is a derived class from `HtmlElementPtr` that adds ownership over the event handlers. Upon destructing it will unregister the eventhandlers.