_content/doc/pgo: correct sample index requirements

The current requirement is completely wrong. In 1.20, we unconditionally
look at sample index 1, which should either be samples/count or
cpu/nanoseconds (they have the same semantic meaning).

For golang/go#58292 (hopefully in 1.20.1), we are correcting this to
pick the first index. I am omitting describing this slight version
discrepancy due to lack of space, but I could be convinced to add it.

For golang/go#58292

Change-Id: I24bb125db50a254b18c3f5f21db0c7fdc2125229
Reviewed-on: https://go-review.googlesource.com/c/website/+/466515
Reviewed-by: Frederic Branczyk <fbranczyk@gmail.com>
Reviewed-by: Austin Clements <austin@google.com>
Run-TryBot: Michael Pratt <mpratt@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
diff --git a/_content/doc/pgo.md b/_content/doc/pgo.md
index 505b5f8..4e10ef0 100644
--- a/_content/doc/pgo.md
+++ b/_content/doc/pgo.md
@@ -252,7 +252,7 @@
 
 Profiles from alternative source may be used with Go PGO if converted to the [pprof format](https://github.com/google/pprof/tree/main/proto), provided they follow these general requirements:
 
-* Sample index 0 should be type “cpu” and unit “count”.
+* One of the sample indices should have type/unit "samples"/"count" or "cpu"/"nanoseconds".
 
 * Samples should represent samples of CPU time at the sample location.