Skip to content

Commit

Permalink
version: fix get size
Browse files Browse the repository at this point in the history
  • Loading branch information
darakeon committed Sep 21, 2024
1 parent 485080f commit d8a7126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion version/src/todos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fn process_tasks(mut numbers: Vec<usize>) -> (Vec<String>, Vec<String>) {

fn extract_task(text: &str) -> Option<(String, String)> {
let pattern =
r#"^\| ([^|]+) +\| . +\| \d \| \d \| \d \|$"#;
r#"^\| ([^|]+) +\| (.) +\| \d \| \d \| \d \|$"#;

let regex = Regex::new(pattern).unwrap();

Expand Down

0 comments on commit d8a7126

Please sign in to comment.