From cad4ea0999beb0d8218df6d8364e0fa3842b7a25 Mon Sep 17 00:00:00 2001 From: Dmitry Zakablukov Date: Tue, 12 Nov 2024 16:09:33 +0300 Subject: [PATCH] [PKM-2673] Doc tests fixed --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6016615..d645c64 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ //! You do *not* need to install any OpenCL hardware driver(s) to run your code which depends on `opencl-dynamic-sys` library. //! //! Just include the library in the `dependencies` section in your `Cargo.toml` file: -//! ``` +//! ```custom //! [dependencies] //! opencl-dynamic-sys = "0.1" //! ``` @@ -39,7 +39,7 @@ //! //! If you have the OpenCL shared library in non-standard place, you can use an environment variable `OPENCL_DYLIB_PATH` //! to define where to look for the library (the value of the variable is a comma-separated string): -//! ``` +//! ```custom //! OPENCL_DYLIB_PATH=/usr/lib/libOpenCL.so;/var/lib/OpenCL;%DESKTOP%/OpenCL.dll //! ``` //!