From 12362b1798ef08cac6768e008032cec005111f67 Mon Sep 17 00:00:00 2001 From: Divye Gala Date: Tue, 2 Apr 2024 17:01:25 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Dante Gama Dessavre --- examples/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index 90642d2cd..701fd0dee 100644 --- a/examples/README.md +++ b/examples/README.md @@ -6,11 +6,11 @@ First, please refer to our [installation docs](https://docs.rapids.ai/api/cuvs/s Once the minimum requirements are satisfied, this example template application can be built with the provided `build.sh` script. This is a bash script that calls the appropriate CMake commands, so you can look into it to see the typical CMake based build workflow. -This directories (`CUVS_SOURCE/examples/c`) or (`CUVS_SOURCE/examples/cpp`) can be copied directly in order to build a new application with CUVS. +The directories (`CUVS_SOURCE/examples/c`) or (`CUVS_SOURCE/examples/cpp`) can be copied directly in order to build a new application with cuVS. cuVS can be integrated into an existing CMake project by copying the contents in the `configure rapids-cmake` and `configure cuvs` sections of the provided `CMakeLists.txt` into your project, along with `cmake/thirdparty/get_cuvs.cmake`. -Make sure to link against the appropriate Cmake targets. Use `cuvs::c_api` and `cuvs::cuvs` to utilize the C and C++ shared library respectively. +Make sure to link against the appropriate CMake targets. Use `cuvs::c_api` and `cuvs::cuvs` to use the C and C++ shared libraries respectively. ```cmake target_link_libraries(your_app_target PRIVATE cuvs::cuvs)