From c7cc9e6c4424629e57c88da5b4f9bf8dbee9b05d Mon Sep 17 00:00:00 2001 From: Chayoung You Date: Mon, 22 Jul 2019 18:01:07 +0900 Subject: [PATCH] Fix typo --- ALE.md | 4 ++-- Project-Setup.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ALE.md b/ALE.md index 73a9939..bf677b1 100644 --- a/ALE.md +++ b/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' +\ } \ } ``` diff --git a/Project-Setup.md b/Project-Setup.md index dd93c83..b7d067f 100644 --- a/Project-Setup.md +++ b/Project-Setup.md @@ -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`.