From 49c5376d3ddf8262b82b48dea3de5ba8e15ebf88 Mon Sep 17 00:00:00 2001 From: Priyadi Iman Nurcahyo <1102197+priyadi@users.noreply.github.com> Date: Tue, 16 Jan 2024 17:36:45 +0700 Subject: [PATCH] docs: Minor updates --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index be2e500..6772b1b 100644 --- a/README.md +++ b/README.md @@ -111,9 +111,11 @@ behavior. It should also be very fast, as it compiles its mapping code to PHP files. The problem was error handling. When an error occurred in the compiled mappers, it was usually a `TypeError`. It was difficult to debug, and even more difficult to resolve the problem, addressing the problem requires the skill of -working with AST. However, we found that the problems were deployment errors -(usually forgetting to clear the cache), some edge cases (easy to work around), -or bugs in the mapper. We did contributed some fixes back to the project. +working with AST. We found that the problems were deployment errors (usually +forgetting to clear the cache), some edge cases (easy to work around), or bugs +in the mapper. It was rare to get an error, but when it happened, it was +difficult and time-consuming to resolve. We did contribute some fixes back to +the project. The second problem was that the mapper was difficult to extend. Adding a new transformer requires the skill of working with AST, and there was no option to