summaryrefslogtreecommitdiffhomepage
path: root/samples/13_rust_extensions
diff options
context:
space:
mode:
authorMike Martin <[email protected]>2020-11-27 17:33:38 -0600
committerAmir Rajan <[email protected]>2020-12-06 09:49:41 -0600
commitc8d861dbd4551445d71bcbe6db510fb792a1895c (patch)
tree67dba5d77085754bb665e2d0345d2419f0aa0155 /samples/13_rust_extensions
parent903f5cc35a96c0ca5fa7c0f10e2163ffdc2ccea6 (diff)
downloaddragonruby-game-toolkit-contrib-c8d861dbd4551445d71bcbe6db510fb792a1895c.tar.gz
dragonruby-game-toolkit-contrib-c8d861dbd4551445d71bcbe6db510fb792a1895c.zip
s/C/Rust
Diffstat (limited to 'samples/13_rust_extensions')
-rw-r--r--samples/13_rust_extensions/02_intermediate/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/13_rust_extensions/02_intermediate/README.md b/samples/13_rust_extensions/02_intermediate/README.md
index a0e1405..d43de97 100644
--- a/samples/13_rust_extensions/02_intermediate/README.md
+++ b/samples/13_rust_extensions/02_intermediate/README.md
@@ -12,7 +12,7 @@ This sample currently only runs on macos but should run on any target that Rust
## Regular Expressions
-This sample shows how to use a third-party C library. We use a library for
+This sample shows how to use a third-party Rust library. We use a library for
regular expressions: https://github.com/rust-lang/regex.
This library comes with C bindings which we have extracted and lightly modified to work with this example. The changes made were to the bundled C header file in `regex-capi/include/rure.h` to add Dragonruby FFI annotations and to the `regex-capi/Cargo.toml` file to add an explicit dependency on regex version 1.4.2 which is the release these C bindings were extracted from.