Skip to content

fix: typos in documentation files #384

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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 docs/reference/hubble/grpcapi/grpcapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ bindings for other clients built using other languages. Note that by default, hu
javascript [ts-proto](https://www.npmjs.com/package/ts-proto) library's serialization byte order to verify messages
hashes. If you are using a different client, you may need to use the `data_bytes` field with the raw serialized bytes
when calling `SubmitMessage` in order for the message to be considered valid. Refer to
the [SubmitMessage HTTP API docs](/reference/hubble/httpapi/message#using-with-rust-go-or-other-programing-languages)
the [SubmitMessage HTTP API docs](/reference/hubble/httpapi/message#using-with-rust-go-or-other-programming-languages)
for more details.
2 changes: 1 addition & 1 deletion docs/reference/hubble/httpapi/message.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ async fn main() {

let msg_data_bytes = msg_data.write_to_bytes().unwrap();

// Calculate the blake3 hash, trucated to 20 bytes
// Calculate the blake3 hash, truncated to 20 bytes
let hash = blake3::hash(&msg_data_bytes).as_bytes()[0..20].to_vec();

// Construct the actual message
Expand Down