Fix typo

Chayoung You 2019-07-22 18:01:07 +09:00 committed by Fangrui Song
parent e70449f932
commit c7cc9e6c44
2 changed files with 3 additions and 3 deletions

4
ALE.md

@ -7,8 +7,8 @@ To set init options for `ccls`, add to `~/.vimrc` or `~/.vim/vimrc` (example for
```viml
let g:ale_cpp_ccls_init_options = {
\ 'cache': {
\ 'directory': '/tmp/ccls/cache'),
\ },
\ 'directory': '/tmp/ccls/cache'
\ }
\ }
```

@ -160,7 +160,7 @@ _appended_ to the compiler flags for files found in `compile_commands.json`.
This argument should be added only when parsing C (`%c`), C++ (`%cpp`),
Objective-C (`%objective-c`), or Objective-C++ (`%objective-c++`) files.
### `%cu
### `%cu`
This argument should be added only when parsing CUDA files. If you want an option to be added
to both CUDA and regular C++ files, write `%cpp %cu -DA`.