Skip to content
Closed
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 desktop/wrapper/src/message_dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl<'a> DesktopWrapperMessageDispatcher<'a> {
let mut responses = VecDeque::new();
if let Err(e) = self.editor.poll_node_graph_evaluation(&mut responses) {
if e != "No active document" {
tracing::error!("Error poling node graph: {}", e);
tracing::error!("Error polling node graph: {}", e);
}
}
while let Some(message) = responses.pop_front() {
Expand Down
2 changes: 1 addition & 1 deletion editor/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl Editor {
mut application_io: PlatformApplicationIo,
wake: Wake,
) -> Self {
ENVIRONMENT.set(environment).expect("Editor shoud only be initialized once");
ENVIRONMENT.set(environment).expect("Editor should only be initialized once");
graphene_std::uuid::set_uuid_seed(uuid_random_seed);

let mut dispatcher = Dispatcher::new(resource_storage, working_copy_root);
Expand Down
2 changes: 1 addition & 1 deletion editor/src/messages/network/network_message_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl MessageHandler<NetworkMessage, NetworkMessageContext> for NetworkMessageHan
if let Some(request) = request {
responses.add(request(self.client.clone()));
} else {
log::error!("received a empty NetworkMessage::Request");
log::error!("received an empty NetworkMessage::Request");
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion libraries/rawkit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ pub enum DecoderError {
TiffError(#[from] TiffError),
#[error("An error occurred when converting integer from one type to another")]
ConversionError(#[from] std::num::TryFromIntError),
#[error("An IO Error ocurred")]
#[error("An IO Error occurred")]
IoError(#[from] std::io::Error),
#[error("The thumbnail format is unsupported")]
UnsupportedThumbnailFormat,
Expand Down
2 changes: 1 addition & 1 deletion libraries/rawkit/src/tiff/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ pub enum TiffError {
InvalidOffset,
#[error("An error occurred when converting integer from one type to another")]
ConversionError(#[from] std::num::TryFromIntError),
#[error("An IO Error ocurred")]
#[error("An IO Error occurred")]
IoError(#[from] std::io::Error),
}