docs(contributing): fix syntax highlighting (#32928)

This commit is contained in:
Kevin Ji 2023-09-06 08:29:48 -04:00 committed by GitHub
parent 424666e341
commit 51b2b2d745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -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-<PACKAGE_NAME>"
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`.