Skip to content

Commit b172d4e

Browse files
authored
Update comments Scope.java (#3060)
1 parent 0bd723b commit b172d4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sentry/src/main/java/io/sentry/Scope.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ public Queue<Breadcrumb> getBreadcrumbs() {
393393
}
394394

395395
/**
396-
* Adds a breadcrumb to the breadcrumbs queue It also executes the BeforeBreadcrumb callback if
396+
* Adds a breadcrumb to the breadcrumbs queue. It also executes the BeforeBreadcrumb callback if
397397
* set
398398
*
399399
* @param breadcrumb the breadcrumb
@@ -737,7 +737,7 @@ Session withSession(final @NotNull IWithSession sessionCallback) {
737737
return cloneSession;
738738
}
739739

740-
/** the IWithSession callback */
740+
/** The IWithSession callback */
741741
interface IWithSession {
742742

743743
/**
@@ -785,14 +785,14 @@ SessionPair startSession() {
785785
/** The SessionPair class */
786786
static final class SessionPair {
787787

788-
/** the previous session if exists */
788+
/** The previous session if exists */
789789
private final @Nullable Session previous;
790790

791791
/** The current Session */
792792
private final @NotNull Session current;
793793

794794
/**
795-
* The SessionPar ctor
795+
* The SessionPair ctor
796796
*
797797
* @param current the current session
798798
* @param previous the previous sessions if exists or null
@@ -803,7 +803,7 @@ public SessionPair(final @NotNull Session current, final @Nullable Session previ
803803
}
804804

805805
/**
806-
* REturns the previous session
806+
* Returns the previous session
807807
*
808808
* @return the previous sessions if exists or null
809809
*/
@@ -880,7 +880,7 @@ public void setPropagationContext(final @NotNull PropagationContext propagationC
880880
}
881881
}
882882

883-
/** the IWithTransaction callback */
883+
/** The IWithTransaction callback */
884884
@ApiStatus.Internal
885885
public interface IWithTransaction {
886886

0 commit comments

Comments
 (0)