Skip to content

Commit

Permalink
Fix #27 - correct README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
atilaneves committed Apr 9, 2018
1 parent 522d554 commit be7ecf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ It takes a `.dpp` file and outputs a valid D file that can be compiled. The orig
has no preprocessor, so the `.dpp` file is "quasi-D", or "D with #include directives".
The only supported C preprocessor directive is `#include`.

The input `.dpp` file may also use C preprocessor macros defined in the file(s) it q`#include`s, just as a C/C++
The input `.dpp` file may also use C preprocessor macros defined in the file(s) it `#include`s, just as a C/C++
program would (see the example above). It may not, however, define macros of its own.

`d++` goes through the input file line-by-line, and upon encountering an `#include` directive, parses
Expand All @@ -112,7 +112,7 @@ uint16_t foo(uin32_t a);
The output file will contain:
```d
ushort foo(ushort a);
ushort foo(uint a);
```

d++ will also enclose each one of these original `#include` directives with either
Expand Down

0 comments on commit be7ecf3

Please sign in to comment.