From d79c4b6f463a0fa254db816b2491b56fe9a90219 Mon Sep 17 00:00:00 2001
From: Nathan McCarty
Date: Sat, 15 Mar 2025 18:20:56 -0400
Subject: [PATCH] Tweak LessMacrosMoreTypes blurb
---
db/series/0.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/db/series/0.json b/db/series/0.json
index 8661aef..dfdf5e6 100644
--- a/db/series/0.json
+++ b/db/series/0.json
@@ -1,7 +1,7 @@
{
- "desc": "Macros are annoying, but an unfortunate fact of life in many programming languages. Especially in languages with nominally \"strong\" type systems, like Rust, macros are quite frequently needed to work around the type system to avoid needless repetition when consuming an API, generate formulaic boilerplate that only exists to please the type system, or work around the lack of variadic functions for things like printf. Lets explore the ways we can use dependently typed constructs to eliminate the need for such macros.",
+ "desc": "Macros are annoying, but an unfortunate fact of life in many programming languages.
Especially in languages with nominally \"strong\" type systems, like Rust, macros are quite frequently needed to work around the type system to avoid needless repetition when consuming an API, generate formulaic boilerplate that only exists to please the type system, or work around the lack of variadic functions for things like printf. Lets explore the ways we can use dependently typed constructs to eliminate the need for such macros.",
"post-ids": [
5
],
"title": "Less Macros, More Types"
-}
\ No newline at end of file
+}