Skip to content

Commit

Permalink
Fix spelling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuereth committed Apr 4, 2024
1 parent 4786b96 commit 5561e62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/weaver_diff/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Status: **Work-In-Progress**

This crate provides a minimal "diff" library with colored output.

It is designed to hide actual implementation details of diff and dependency selection from the rest of the weaver proejct.
It is designed to hide actual implementation details of diff and dependency selection from the rest of the weaver project.
2 changes: 1 addition & 1 deletion crates/weaver_diff/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const GREEN: &str = "\x1b[32m";
const RED: &str = "\x1b[31m";
const RESET: &str = "\x1b[0m";

/// Constructs a "diff" string of the orignal vs. updated.
/// Constructs a "diff" string of the original vs. updated.
/// Will create colorized (ANSI) output w/ `+` representing additions and `-` representing removals.
pub fn diff_output(original: &str, updated: &str) -> String {
let mut result = String::new();
Expand Down

0 comments on commit 5561e62

Please sign in to comment.