Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos #4407

Merged
merged 2 commits into from
Apr 11, 2024
Merged
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
2 changes: 1 addition & 1 deletion pkg/query/callgraph.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func linesToCallgraphNodes(

// Same as locations, lines are in order from deepest to highest in the
// stack. Therefore we start with the innermost, and work ourselves
// outwards. We want the result to be from higest to deepest to be inserted
// outwards. We want the result to be from highest to deepest to be inserted
// into our callgraph at our "current" position that's calling
// linesToTreeNodes.
for i := 0; i < len(lines); i++ {
Expand Down
2 changes: 1 addition & 1 deletion pkg/query/flamegraph.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func linesToTreeNodes(

// Same as locations, lines are in order from deepest to highest in the
// stack. Therefore we start with the innermost, and work ourselves
// outwards. We want the result to be from higest to deepest to be inserted
// outwards. We want the result to be from highest to deepest to be inserted
// into our flamegraph at our "current" position that's calling
// linesToTreeNodes.
for i := 0; i < len(lines); i++ {
Expand Down
4 changes: 2 additions & 2 deletions proto/buf.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ deps:
- remote: buf.build
owner: googleapis
repository: googleapis
commit: 7e6f6e774e29406da95bd61cdcdbc8bc
digest: shake256:fe43dd2265ea0c07d76bd925eeba612667cf4c948d2ce53d6e367e1b4b3cb5fa69a51e6acb1a6a50d32f894f054a35e6c0406f6808a483f2752e10c866ffbf73
commit: 7a6bc1e3207144b38e9066861e1de0ff
digest: shake256:d646836485c34192401253703c4e7ce899c826fceec060bf4b2a62c4749bd9976dc960833e134a1f814725e1ffd60b1bb3cf0335a7e99ef0e8cec34b070ffb66
- remote: buf.build
owner: grpc-ecosystem
repository: grpc-gateway
Expand Down
2 changes: 1 addition & 1 deletion ui/packages/app/web/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function startApp() {
});
}

// Initalise app after the Meticulous recorder is ready: Meticulous needs to be initialised first,
// Initialise app after the Meticulous recorder is ready: Meticulous needs to be initialised first,
// so it can capture the initial network requests
const container = document.getElementById('root');
const root = createRoot(container!);
Expand Down
Loading