Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
public enum InternalTelemetryVersion {
/**
* Record self-monitoring metrics defined in the SDK prior the standardization in semantic
* Record self-monitoring metrics defined in the SDK prior to the standardization in semantic
* conventions.
*/
LEGACY,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/**
* {@link RandomSupplier} instance that doesn't use {@link java.util.concurrent.ThreadLocalRandom},
* which is broken on most versions of Android (it uses the same seed everytime it starts up).
* which is broken on most versions of Android (it uses the same seed every time it starts up).
*/
enum AndroidFriendlyRandomHolder implements Supplier<Random> {
INSTANCE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* guarantees are made.
*
* @see ExceptionAttributeResolver#getDefault()
* @see ExceptionAttributeResolver#getDefault(boolean) ()
* @see ExceptionAttributeResolver#getDefault(boolean)
*/
final class DefaultExceptionAttributeResolver implements ExceptionAttributeResolver {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import java.util.function.Supplier;

/**
* Provides random number generater constructor utilities.
* Provides random number generator constructor utilities.
*
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
* at any time.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import javax.annotation.concurrent.Immutable;

/**
* {@link Resource} represents a resource, which capture identifying information about the entities
* {@link Resource} represents a resource, which captures identifying information about the entities
* for which signals (stats or traces) are reported.
*/
@Immutable
Expand Down
Loading