From 579ce113b3179fedbc192108f5f0e6fa970488fa Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Sat, 11 Jan 2025 16:05:04 +0100 Subject: [PATCH] Update how-to-optimize-compute.md --- content/guides/advanced/how-to-optimize-compute.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/advanced/how-to-optimize-compute.md b/content/guides/advanced/how-to-optimize-compute.md index e19ffea21..24274d3f1 100644 --- a/content/guides/advanced/how-to-optimize-compute.md +++ b/content/guides/advanced/how-to-optimize-compute.md @@ -68,7 +68,7 @@ compute_fn!("My message" => { The output of this macro will give you the compute usage before and after your code, helping you understand what parts of your program are using the most compute. You can find an example of using this macro in the -[cu_optimizations repository.](https://github.com/solana-developers/cu_optimizations/blob/main/anchor/counter/anchor/programs/counter/src/lib.rs#L18) +[cu_optimizations repository.](https://github.com/solana-developers/cu_optimizations/blob/main/counterAnchor/anchor/programs/counter/src/lib.rs#L20) ## Optimizing your Program