From e5fa6af0d41d22ceb0456a274bf43da5f40fa295 Mon Sep 17 00:00:00 2001 From: Christopher Sahnwaldt Date: Tue, 14 Jun 2022 20:35:50 +0200 Subject: [PATCH] imperative/README.md: fix typo: "coarse of action" -> "course of action" --- imperative/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imperative/README.md b/imperative/README.md index 0244582..d1a7d29 100644 --- a/imperative/README.md +++ b/imperative/README.md @@ -85,7 +85,7 @@ $ circle -c info.cxx std::tuple ``` -If you aren't sure what this does at first glance, the wise coarse of action is to print it and find out. Use `@meta std::cout` along with `.string` reflection to print types at compile time. This works even if the translation unit doesn't otherwise compile; just put the print statement before where the error occurs. This is a big help when trying to deciper arcane stuff. +If you aren't sure what this does at first glance, the wise course of action is to print it and find out. Use `@meta std::cout` along with `.string` reflection to print types at compile time. This works even if the translation unit doesn't otherwise compile; just put the print statement before where the error occurs. This is a big help when trying to deciper arcane stuff. CIA leverages [pack subscripts and slices](https://github.com/seanbaxter/circle/blob/master/universal/README.md#pack-subscripts-and-slices) and [pack indices]( https://github.com/seanbaxter/circle/blob/master/universal/README.md#pack-indices), powerful features already documented [here](https://github.com/seanbaxter/circle/blob/master/universal/README.md). [Constexpr conditional](https://github.com/seanbaxter/circle/tree/master/conditional#constexpr-conditional--) and [constexpr multi-conditional](https://github.com/seanbaxter/circle/tree/master/conditional#constexpr-multi-conditional---) are documented [here](https://github.com/seanbaxter/circle/tree/master/conditional#readme).