Fix more Winamp typos

This commit is contained in:
Jordan Eldredge 2025-06-29 14:42:21 -07:00
parent ce483b8df5
commit 4c07731d76

View file

@ -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({
/* ... */
});
// ...