Skip to content

Commit

Permalink
docs(contributing): fix syntax highlighting (#32928)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinji authored Sep 6, 2023
1 parent 424666e commit 51b2b2d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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`.

Expand Down

0 comments on commit 51b2b2d

Please sign in to comment.