From 97c47a3c0dc1e519d4a7ebe3ae049937c8b36320 Mon Sep 17 00:00:00 2001 From: owenammann <52083917+owenammann@users.noreply.github.com> Date: Tue, 4 Jan 2022 11:07:10 -0800 Subject: [PATCH] Update write-cpp-unit-test.md Make step 1 instructions match code: `cc_library` instead of `cc_binary` --- doc/write-cpp-unit-test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/write-cpp-unit-test.md b/doc/write-cpp-unit-test.md index d15fc03..41266ed 100644 --- a/doc/write-cpp-unit-test.md +++ b/doc/write-cpp-unit-test.md @@ -68,7 +68,7 @@ PROXY_WASM_NULL_PLUGIN_REGISTRY #endif ``` -Then to build the extension under `nullVM` mode, the following target is added to the `BUILD` file. The target is similiar to the one generated Wasm binary, except that it uses `cc_binary` and defines `NULL_PLUGIN` macro in `copts`. +Then to build the extension under `nullVM` mode, the following target is added to the `BUILD` file. The target is similiar to the one generated Wasm binary, except that it uses `cc_library` and defines `NULL_PLUGIN` macro in `copts`. `BUILD` ```python