From eeb8f554a5b4116ff9fe069b21c6d7449b047d1a Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Sat, 11 Jan 2025 16:21:22 +0100 Subject: [PATCH] Update how-to-optimize-compute.md (#689) --- 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