From 51b2b2d745dc88d7dc79ee83f2a8150bbbc7445c Mon Sep 17 00:00:00 2001 From: Kevin Ji <1146876+kevinji@users.noreply.github.com> Date: Wed, 6 Sep 2023 08:29:48 -0400 Subject: [PATCH] docs(contributing): fix syntax highlighting (#32928) --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1051568ec0..5894203afc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -250,7 +250,7 @@ before the PR can be merged. Here are the steps: * Under the newly-created directory, create a Cargo.toml file. Below is an example template: -``` +```toml [package] name = "solana-" version = "0.0.1" @@ -285,7 +285,9 @@ edition = "2021" * All Rust code is linted with Clippy. If you'd prefer to ignore its advice, do so explicitly: - ```rust #[allow(clippy::too_many_arguments)] ``` + ```rust + #[allow(clippy::too_many_arguments)] + ``` Note: Clippy defaults can be overridden in the top-level file `.clippy.toml`.