From 5f745782b004a25c54dc4aeb0a2a7a10783fb5d6 Mon Sep 17 00:00:00 2001 From: rowan Date: Tue, 3 Dec 2024 15:18:04 -0600 Subject: [PATCH] wao; typo,, --- content/blog/a-roxy-update/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/a-roxy-update/index.md b/content/blog/a-roxy-update/index.md index 780ea64..655bee9 100644 --- a/content/blog/a-roxy-update/index.md +++ b/content/blog/a-roxy-update/index.md @@ -20,7 +20,7 @@ Roxy's new philosophy is about pluggable behavior. The core is effectively a red Roxy::process_file("input-file.md", "output-file.html", &mut parser); ``` -Hopefully this lets me manage the complexity for whenever I want to add a new feature or parsing ability to the library. A lot of the comlexity still exists in one place, `roxy-cli`, but I'll hopefully break that down over time. +Hopefully this lets me manage the complexity for whenever I want to add a new feature or parsing ability to the library. A lot of the complexity still exists in one place, `roxy-cli`, but I'll hopefully break that down over time. ## What's left There's a bunch of stuff I didn't get to do. Two things I really want are an RSS feed generator, and streaming file inputs. Right now, the library loads the entire file into memory and works on it when it should be streaming it and processing it in chunks. I didn't have the time or energy to work on that, but maybe later.