Skip to content

Commit

Permalink
doc: Fix some typos in README files (#5600)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkopczyk committed Jan 6, 2024
1 parent eb5b611 commit 70077a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spoon-decompiler/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Spoon-Decompiler

Spoon-decompiler is an extension of spoon that allow to work on bytecode by decompiling it (with your favorite decompiler, or one of those already included).
Spoon-decompiler is an extension of spoon that allows working on bytecode by decompiling it (using your favorite decompiler, or one of those already included).
This can be done offline with the help of [JarLauncher](http://spoon.gforge.inria.fr/launcher.html) or DecompiledResource, as well as at loadtime in an agent or a classLoader with the help of [SpoonClassFileTransformer](http://spoon.gforge.inria.fr/agent.html).

This module is released as a separated artifact. To use it with maven please add the following lines to your pom:
This module is released as a separate artifact. To use it with Maven, please add the following lines to your pom:

```xml
<!--latest stable release-->
Expand Down
4 changes: 2 additions & 2 deletions spoon-smpl/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Spoon-smpl: Semantic Patches for Java
# Spoon-SmPL: Semantic Patches for Java

This Spoon module implements the Semantic Patch Language called [SmPL](https://en.wikipedia.org/wiki/Coccinelle_(software)#Semantic_Patch_Language "Wikipedia entry"). The Semantic Patch Language, invented for C by the seminal tool [Coccinelle](https://github.com/coccinelle/coccinelle) enables to apply transformations in an automated way, where the transformation itself is a patch written in a special syntax.

Expand Down Expand Up @@ -27,7 +27,7 @@ The current scope of the implementation is summarized at https://spoon.gforge.in

## Architecture Notes

* Parsing SMPL: see SmPLLexer
* Parsing SmPL: see SmPLLexer
* SmPLLexer is used by SmPLParser, whose main method is method `parse`. Next, method `rewrite` transforms the SmPL code into the Java DSL.
* class `SmPLRule` encapsulates a single rule, it is created by method `SmPLParser#compile`
* class `FormulaCompiler` generates the CTL formula, method `compileFormula()` returns a `Formula`
Expand Down

0 comments on commit 70077a4

Please sign in to comment.