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.