diff options
| author | robot-piglet <[email protected]> | 2026-03-29 19:40:56 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-03-29 19:58:23 +0300 |
| commit | f5e03af6b675ac652e27d1925b08790392593cec (patch) | |
| tree | 6b55c57d7f250ff003e43879eddbd102c4c9dad3 /library/cpp | |
| parent | 4192f6b12173f948303602ced913b7a895e02db0 (diff) | |
Intermediate changes
commit_hash:986e0f49b3f095829d1a8af7f2f88521055e63a1
Diffstat (limited to 'library/cpp')
| -rw-r--r-- | library/cpp/resource/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/resource/README.md b/library/cpp/resource/README.md index b1e4961c1fe..b271aacda4f 100644 --- a/library/cpp/resource/README.md +++ b/library/cpp/resource/README.md @@ -6,7 +6,7 @@ See ya make documentation, resources section for more details. ### Example - adding a resource file into build: ``` LIBRARY() -OWNER(user1) + RESOURCE( path/to/file1 /key/in/program/1 path/to/file2 /key2 @@ -18,7 +18,7 @@ END() ```cpp #include <library/cpp/resource/resource.h> int main() { - Cout << NResource::Find("/key/in/program/1") << Endl; - Cout << NResource::Find("/key2") << Endl; + Cout << NResource::Find("/key/in/program/1") << Endl; + Cout << NResource::Find("/key2") << Endl; } ``` |
