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 app/src/features/toolbar/components/SwitchThemeButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function SwitchThemeButton() {

return (
<IconButton
aria-label="swithThemes"
aria-label="switchThemes"
onClick={handleChange}
sx={{
marginRight: "15px",
Expand Down
2 changes: 1 addition & 1 deletion src/transpilation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::{
const TMP: &str = "tmp";
const FILE_NAME: &str = "main.sol";

/// Transpile the given Solitiy contract to Sway.
/// Transpile the given Solidity contract to Sway.
pub fn solidity_to_sway(contract: String) -> Result<TranspileResponse, ApiError> {
if contract.is_empty() {
return Ok(TranspileResponse {
Expand Down