Skip to content

Commit

Permalink
Fix highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
musm authored Aug 1, 2020
1 parent 81befdd commit a194969
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ end

Finally, here are the corresponding Windows API function syntax definitions in `C`:

```
```c
HANDLE WINAPI GetStdHandle(
_In_ DWORD nStdHandle
);
```

```
```c
BOOL WINAPI GetConsoleMode(
_In_ HANDLE hConsoleHandle,
_Out_ LPDWORD lpMode
Expand All @@ -66,7 +66,7 @@ directly translatable without manually looking up the myriad Windows data types.
The aliases defined in this package are provided below. Refer to
[https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types](https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types)
for detailed documentation on each constant.
```
```julia
FALSE = Cint(0)
TRUE = Cint(1)

Expand Down

0 comments on commit a194969

Please sign in to comment.