Skip to content

Commit

Permalink
chore: remove repetitive words (#3754)
Browse files Browse the repository at this point in the history
Signed-off-by: acceptacross <csqcqs@gmail.com>
  • Loading branch information
acceptacross authored Mar 12, 2024
1 parent d4a55e4 commit e0f6803
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion zipkin-lens/src/zipkin/span-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export class SpanNodeBuilder {
}

// At this point, we have the most reliable parent-child relationships and can allocate spans
// corresponding the the best place in the trace tree.
// corresponding the best place in the trace tree.
Object.keys(this._spanToParent).forEach((key) => {
const child = this._keyToNode[key];
const parent = this._keyToNode[this._spanToParent[key]];
Expand Down
2 changes: 1 addition & 1 deletion zipkin-lens/src/zipkin/span-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function formatEndpoint(endpoint) {
}

/*
* Derived means not annotated directly. Ex 'Server Start' reflects the the timestamp of a
* Derived means not annotated directly. Ex 'Server Start' reflects the timestamp of a
* kind=SERVER span. 'Server Finish' is timestamp+duration of the same.
*/
function toAnnotationRow(a, localFormatted, isDerived = false) {
Expand Down
2 changes: 1 addition & 1 deletion zipkin/src/main/java/zipkin2/internal/SpanNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public SpanNode build(List<Span> spans) {
}

// At this point, we have the most reliable parent-child relationships and can allocate spans
// corresponding the the best place in the trace tree.
// corresponding the best place in the trace tree.
for (Map.Entry<Object, Object> entry : spanToParent.entrySet()) {
SpanNode child = keyToNode.get(entry.getKey());
SpanNode parent = keyToNode.get(entry.getValue());
Expand Down

0 comments on commit e0f6803

Please sign in to comment.