Skip to content

Commit be0ec6c

Browse files
Update README.md
1 parent 4e65c6b commit be0ec6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This library helps you for execute that created validations via [jQuery QueryBu
66
You can execute to generated validations basically.
77
Generated validation json should be convert to `Map` for using executions. `Gson` dependency is good for converting to `Map` from string.
88

9-
```
9+
```xml
1010
<dependency>
1111
<groupId>com.google.code.gson</groupId>
1212
<artifactId>gson</artifactId>
@@ -16,7 +16,7 @@ Generated validation json should be convert to `Map` for using executions. `Gso
1616

1717

1818
#### Example Validation Json
19-
```
19+
```js
2020
// String validationString=..
2121
{
2222
"condition":"OR",
@@ -38,7 +38,7 @@ Generated validation json should be convert to `Map` for using executions. `Gso
3838
}
3939
```
4040
#### Using Validation Execution
41-
```
41+
```java
4242
//your data object
4343
Map yourData = new HashMap<>();
4444
yourData.put("number", "7");
@@ -55,4 +55,4 @@ boolean result=validationGroup.execute(yourData)
5555
assertTrue(result);// result will `true` according to example
5656

5757

58-
```
58+
```

0 commit comments

Comments
 (0)