From 99d66f1edfb21d9c9d4b98745a5273baa8f30635 Mon Sep 17 00:00:00 2001 From: "Jurgen J. Vinju" Date: Sat, 23 Mar 2024 12:37:48 +0100 Subject: [PATCH] Update coding.md --- about/coding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/about/coding.md b/about/coding.md index d46fbca..e652c3b 100644 --- a/about/coding.md +++ b/about/coding.md @@ -52,7 +52,7 @@ These are guidelines for code style and quality that we follow at UseTheSource. * we collect messages in `list[Message]` sorted by file offset and grouped by source file. * functions rather return `void` than return an error code. Instead they throw an exception value when an internal error is detected. * exception values are typically a constructor of `RuntimeException` from the `Exception` module. Either use an existing constructor or add your own. - * Progress is reported through the `util::Monitor` API. This integrates with all programming environments. - * Interactive UI is built with HTML and JavaScript, using the built-in app server off the REPL on the terminal, the `showInteractiveContent` app server of the IDE or `util::WebServer`. You can use `lang::html` and `lang::json` to streamline this. The Salix library is also recommended. +* Progress is reported through the `util::Monitor` API. This integrates with all programming environments. +* Interactive UI is built with HTML and JavaScript, using the built-in app server off the REPL on the terminal, the `showInteractiveContent` app server of the IDE or `util::WebServer`. You can use `lang::html` and `lang::json` to streamline this. The Salix library is also recommended.