diff --git a/packages/webamp-docs/docs/06_API/04_static-methods.md b/packages/webamp-docs/docs/06_API/04_static-methods.md index 89c51570..ec9e7325 100644 --- a/packages/webamp-docs/docs/06_API/04_static-methods.md +++ b/packages/webamp-docs/docs/06_API/04_static-methods.md @@ -1,16 +1,16 @@ # Static Methods -The `Winamp` class has the following _static_ methods: +The `Webamp` class has the following _static_ methods: ### `browserIsSupported()` -Returns a true if the current browser supports the features that Webamp depends upon. It is recommended to check this before you attempt to [construct](02_webamp-constructor.md) an instance of `Winamp`. +Returns a true if the current browser supports the features that Webamp depends upon. It is recommended to check this before you attempt to [construct](02_webamp-constructor.md) an instance of `Webamp`. ```ts import Webamp from "webamp"; -if (Winamp.browserIsSupported()) { - new Winamp({ +if (Webamp.browserIsSupported()) { + new Webamp({ /* ... */ }); // ...