From 4bb6b48a8170b45f376608667866d4c6c980853f Mon Sep 17 00:00:00 2001 From: Ripunjay Singh <81869464+rpj09@users.noreply.github.com> Date: Thu, 7 Jul 2022 06:13:04 +0000 Subject: [PATCH] Explanatory and grammatical improvements --- README.md | 6 +++--- implementation.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 770bd4b..365d3d0 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,15 @@ description: Customize Programming Languages # Welcome to LangTrans -LangTrans is used to customize any programming language. You can make your own syntax for any programming languages. +LangTrans is used to customize any programming language. You can make your own syntax for any programming languages. Knowledge about regular expression is all you need to customize, making your coding faster, cleaner and readable. ## How it works? LangTrans convert your syntax into original syntax. -Regular Expression is used to extract tokens from your language. You should write template of syntax of original language. +The Regular Expression is used to extract tokens from your language. You need to create a template of the original language's syntax. -LangTrans take both as input and convert code written in new syntax to original syntax. +Code written in new syntax is converted to original syntax using LangTrans or vice-versa . diff --git a/implementation.md b/implementation.md index b7db437..5b41611 100644 --- a/implementation.md +++ b/implementation.md @@ -1,6 +1,6 @@ # Implementation -To customize you should extract tokens with regular expression. Then you should create the template of original language with token you extracted. +To customize your syntax, you should extract tokens using regular expressions. You should then create the template of the original language using the tokens you extracted. ## Token Extraction @@ -108,7 +108,7 @@ To add content in each line. {% tab title="replace " %} Regular expression to match and replace or delete any unwanted content in token. -To replace add a list with first item as regular expression to unwanted content and second item is the content you wanted to replace with. +To replace unwanted content, add a list with the first item as a regular expression and the second item as the content you want to replace with. To delete add a list with regular expression only {% endtab %}