Skip to content

Commit af21fda

Browse files
committed
README: use single sentence per line
1 parent ac52483 commit af21fda

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

README.adoc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
A tool for manipulating symbols present in `.java` source files.
44

5-
The tool can be used for patching `.java` sources in cases where using `sed` is insufficient due to Java language syntax. The tool follows Java language rules rather than applying simple regular expressions on the source code.
5+
The tool can be used for patching `.java` sources in cases where using `sed` is insufficient due to Java language syntax.
6+
The tool follows Java language rules rather than applying simple regular expressions on the source code.
67

78
Currently the tool is able to remove `import` statements and annotations.
89

@@ -27,7 +28,8 @@ with the option were made. This option is only applicable together with `-i`.
2728
[horizontal!]
2829

2930
== Specification
30-
The tool removes import statements of specified matching class names and if `-a` is specified then also removes annotations. Arguments can be specified in arbitrary order.
31+
The tool removes import statements of specified matching class names and if `-a` is specified then also removes annotations.
32+
Arguments can be specified in arbitrary order.
3133

3234
File path arguments are handled the following way:
3335

@@ -37,9 +39,11 @@ File path arguments are handled the following way:
3739

3840
If no file path is provided then the tool reads from the standard input.
3941

40-
Class name matching can be done in two ways: `-n` to match simple class names or `-p` to match the provided regex pattern against fully qualified names as present in the sources. These options can be specified multiple times.
42+
Class name matching can be done in two ways: `-n` to match simple class names or `-p` to match the provided regex pattern against fully qualified names as present in the sources.
43+
These options can be specified multiple times.
4144

42-
The specific implementation of the regex search engine is subject to change. Therefore only simple patterns should be used to guarantee that they will work with future versions.
45+
The specific implementation of the regex search engine is subject to change.
46+
Therefore only simple patterns should be used to guarantee that they will work with future versions.
4347

4448
The tool writes the results to standard output unless `-i` option is specified in which case it will replace the original files' content.
4549

0 commit comments

Comments
 (0)