From 8522e86bad82a39145839b38197c7da46b0d3b7a Mon Sep 17 00:00:00 2001
From: Jueun Park <s5616012@mailbox.tu-dresden.de>
Date: Sat, 2 Apr 2022 09:34:45 +0900
Subject: [PATCH] Edited index.md

---
 pages/docs/index.md | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/pages/docs/index.md b/pages/docs/index.md
index ea338990..b0f66752 100644
--- a/pages/docs/index.md
+++ b/pages/docs/index.md
@@ -32,15 +32,17 @@ There are some implementation details developers must consider:
     - `ServerVariablesTuple ::= <Name> S:ServerVariableObject;` 
     - `variables` in [Server Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#serverObject)
 
-- In OAS, several objects can be replaced by [Reference Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#referenceObject). In `RAGO`, we implemented this structure in an abstract node to every concerned object. 
-
+- In OAS, several objects can be replaced by [Reference Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#referenceObject). In `RAGO`, we implemented this structure in an abstract node to every concerned object. e.g. 
+    - [Parameter Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameterObject)
+    - following abstract node in JastAdd
+  
 
+Example of [Parameter Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameterObject) implementation
 ``` 
   abstract ParameterOb;
   ParameterReference : ParameterOb ::= <Ref> ...;
   ParameterObject : ParameterOb ::= <Name> <In> ...;
- ```
-Example to implementation of [Reference Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#referenceObject)
+```
 
 
 - Most objects can be extended with `Extension` containing unfixed name and values. In JastAdd, this is also implemented in a tuple (AST-Node) `Extension ::= <Key> <Value:Object>;`
-- 
GitLab