From 0c7592ed81ed14e5a50181594e7da5472cb0c23e Mon Sep 17 00:00:00 2001 From: "Claire V. Hammond" <61138239+cvhammond@users.noreply.github.com> Date: Sat, 19 Aug 2023 23:06:57 -0700 Subject: [PATCH] Update README.md Signed-off-by: Claire V. Hammond <61138239+cvhammond@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03b0fbd..bbfa871 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ A c3d parser and eventually also a writer and editor written in Rust. It can be Load a c3d file: -``` +```rust use c3dio::{C3d, C3dParseError}; let c3d_data = C3d::load("test.c3d"); ``` Load only the parameters/header (no data): -``` +```rust use c3dio::{C3d, C3dParseError}; let c3d_parameters = C3d::load_parameters("test.c3d"); ```