Skip to content

Commit 31ae2c8

Browse files
authored
fixed typos in the README
1 parent 632776e commit 31ae2c8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is a small default library used to manipulate UVL metamodels in JAVA. It us
77

88
## ✨ Key Features
99

10-
- full support of UVL-Syntax (nampaces, feature hircharcies and constraints)
10+
- full support of UVL-Syntax (namespaces, feature hierarchies and constraints)
1111
- convert between different language levels
1212
- direct access to feature model components like features, groups and attributes
1313

@@ -80,7 +80,7 @@ FeatureModel featureModel = uvlModelFactory.parse(content);
8080

8181
The class `de.vill.main.UVLModelFactory` exposes the static method `parse(String)` which will return an instance of a `de.vill.model.FeatureModel` class. If there is something wrong, a `de.vill.exception.ParseError` is thrown. The parser tries to parse the whole model, even if there are errors. If there are multiple errors, a `de.vill.exception.ParseErrorList` is returned which contains all errors that occurred.
8282

83-
### Modifing
83+
### Modifying
8484

8585
```Java
8686
Feature feature = featureModel.getFeatureMap().get(featureName);
@@ -107,7 +107,6 @@ Files.write(filePath, uvlModel.getBytes());
107107
```
108108

109109
A model can be printed with the `toString()` method of the `de.vill.model.FeatureModel` object.
110-
The following snippet shows a minimal example to read and write UVL models using the jar.
111110

112111
## 🧪 Running Tests
113112

@@ -154,3 +153,4 @@ Other parsers:
154153
Usage of UVL:
155154

156155
- https://github.com/FeatureIDE/FeatureIDE _Feature modelling tool_
156+
- https://github.com/SECPS/TraVarT _Transformation Tool for Variability Artifacts_

0 commit comments

Comments
 (0)