Skip to content

Commit 7c3eae2

Browse files
committed
Nit update Makefile comments case
1 parent 400c962 commit 7c3eae2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

solana/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.DEFAULT_GOAL = build
22
.PHONY: build cargo-build anchor-build prod-build test cargo-test anchor-test idl sdk clean node_modules lint cargo-lint anchor-lint fix-lint
33

4-
#find and convert version line:
5-
# turn `const VERSION: &str = "major.minor.patch";` into `major_minor_patch`
6-
#use make functions to minimize dependence on shell
4+
# Find and convert version line:
5+
# Turn `const VERSION: &str = "major.minor.patch";` into `major_minor_patch`
6+
# Use make functions to minimize dependence on shell
77
VERSION = $(subst .,_,$(subst ;,,$(subst ",,$(lastword \
88
$(shell grep "const VERSION" programs/example-native-token-transfers/src/lib.rs) \
99
))))
@@ -18,7 +18,7 @@ build: cargo-build anchor-build
1818
cargo-build:
1919
BPF_OUT_DIR="$(pwd)/target/deploy" cargo build-sbf
2020

21-
# after building, remove the generics from the idl file. This is necessary as of anchor 0.29.0,
21+
# After building, remove the generics from the idl file. This is necessary as of anchor 0.29.0,
2222
# because the javascript library does not support generics yet, and just panics
2323
anchor-build:
2424
anchor build --arch sbf

0 commit comments

Comments
 (0)