@@ -35,17 +35,15 @@ const ALREADY_SEEN_ERROR = "Not capturing exception because it's already been ca
3535/**
3636 * Base implementation for all JavaScript SDK clients.
3737 *
38- * Call the constructor with the corresponding backend constructor and options
39- * specific to the client subclass. To access these options later, use
40- * {@link Client.getOptions}. Also, the Backend instance is available via
41- * {@link Client.getBackend}.
38+ * Call the constructor with the options specific to the client subclass.
39+ * To access these options later, use {@link Client.getOptions}.
4240 *
4341 * If a Dsn is specified in the options, it will be parsed and stored. Use
4442 * {@link Client.getDsn} to retrieve the Dsn at any moment. In case the Dsn is
4543 * invalid, the constructor will throw a {@link SentryException}. Note that
4644 * without a valid Dsn, the SDK will not send any events to Sentry.
4745 *
48- * Before sending an event via the backend , it is passed through
46+ * Before sending an event via the transport , it is passed through
4947 * {@link BaseClient._prepareEvent} to add SDK information and scope data
5048 * (breadcrumbs and context). To add more custom information, override this
5149 * method and extend the resulting prepared event.
@@ -83,7 +81,6 @@ export abstract class BaseClient<O extends Options> implements Client<O> {
8381 /**
8482 * Initializes this client instance.
8583 *
86- * @param backendClass A constructor function to create the backend.
8784 * @param options Options for the client.
8885 */
8986 protected constructor ( options : O ) {
0 commit comments