Skip to content
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 apps/veil/src/pages/tournament/ui/social-card-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const SocialCardCanvas = ({
const canvas = canvasRef.current;
const exponent = getDisplayDenomExponent.optional(stakingToken);

// Check canvas requirments before rendering
// Check canvas requirements before rendering
if (!canvas || exponent === undefined) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-deprecated/src/Text/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ type TextType =
* Note that this is the only component in the entire Penumbra UI library
* that renders an external margin. It's a convenience for developers who
* don't want to wrap each `<Text p />` in a `<div />` with the
* appropriate margin, or a flex columnn with a gap.
* appropriate margin, or a flex column with a gap.
*/
p: true;
})
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm/crate/src/keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::error::WasmResult;
use crate::utils;

/// Loads the proving key as a collection of bytes, and to sets the keys in memory
/// dynamicaly at runtime. Failure to bundle the proving keys in the wasm binary
/// dynamically at runtime. Failure to bundle the proving keys in the wasm binary
/// or call the load function will fail to generate a proof. Consumers of this
/// function will additionally require downloading the proving key parameter `.bin`
/// file for each key type.
Expand Down
Loading