diff --git a/docs/Bowser.html b/docs/Bowser.html
index cacc715..7960224 100644
--- a/docs/Bowser.html
+++ b/docs/Bowser.html
@@ -572,7 +572,7 @@ const result = parser.getResult();
diff --git a/docs/Parser.html b/docs/Parser.html
index fb11d7b..8f4fcd1 100644
--- a/docs/Parser.html
+++ b/docs/Parser.html
@@ -2566,7 +2566,7 @@ the OS called "anything" or the platform called "anything"
const browser = new Bowser(UA);
+ const browser = Bowser.getParser(window.navigator.userAgent);
if (browser.satisfies({chrome: '>118.01.1322' }))
// or with os
if (browser.satisfies({windows: { chrome: '>118.01.1322' } }))
@@ -2989,7 +2989,7 @@ Returns undefined
when the browser is no described in the checkTree
diff --git a/docs/bowser.js.html b/docs/bowser.js.html
index 15f1729..d6d05ac 100644
--- a/docs/bowser.js.html
+++ b/docs/bowser.js.html
@@ -105,7 +105,7 @@ export default Bowser;
diff --git a/docs/global.html b/docs/global.html
index d89d0b2..22a4253 100644
--- a/docs/global.html
+++ b/docs/global.html
@@ -1995,7 +1995,7 @@ like "iPhone"
or "Kindle Fire HD 7"
diff --git a/docs/index.html b/docs/index.html
index 3e93666..a8bac6d 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -157,7 +157,7 @@ list of aliases can be found in the file.
diff --git a/docs/parser.js.html b/docs/parser.js.html
index ca70f3b..e2eb688 100644
--- a/docs/parser.js.html
+++ b/docs/parser.js.html
@@ -385,7 +385,7 @@ class Parser {
* Returns `undefined` when the browser is no described in the checkTree object.
*
* @example
- * const browser = new Bowser(UA);
+ * const browser = Bowser.getParser(window.navigator.userAgent);
* if (browser.satisfies({chrome: '>118.01.1322' }))
* // or with os
* if (browser.satisfies({windows: { chrome: '>118.01.1322' } }))
@@ -546,7 +546,7 @@ export default Parser;
diff --git a/docs/utils.js.html b/docs/utils.js.html
index 68b2d36..8ce6462 100644
--- a/docs/utils.js.html
+++ b/docs/utils.js.html
@@ -260,7 +260,7 @@ export default class Utils {