diff options
author | Patrick von Platen <patrick.v.platen@gmail.com> | 2023-08-23 09:04:36 +0000 |
---|---|---|
committer | Patrick von Platen <patrick.v.platen@gmail.com> | 2023-08-23 09:04:36 +0000 |
commit | 283f6c048d0fdd39b7bd67422481766882bd4857 (patch) | |
tree | b9fa2291473df64b23f4fc00b94191f73e83d943 /README.md | |
parent | c8211fc4748fc69ef2af60aafd252d6c9592d5c9 (diff) | |
download | candle-283f6c048d0fdd39b7bd67422481766882bd4857.tar.gz candle-283f6c048d0fdd39b7bd67422481766882bd4857.tar.bz2 candle-283f6c048d0fdd39b7bd67422481766882bd4857.zip |
fix code snippets
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ Let's see how to run a simple matrix multiplication. We will need the [`anyhow`](https://docs.rs/anyhow/latest/anyhow/) package for our example, so let's also add it to our app. -``` +```bash cd myapp cargo add anyhow ``` |