diff --git a/bip-schnorr.mediawiki b/bip-schnorr.mediawiki
index 2e2c3082..ddb1bb04 100644
--- a/bip-schnorr.mediawiki
+++ b/bip-schnorr.mediawiki
@@ -107,7 +107,7 @@ The following convention is used, with constants as defined for secp256k1:
*** Let ''c = x3 + 7 mod p''.
*** Let ''y = c(p+1)/4 mod p''.
*** Fail if ''c ≠ y2 mod p''.
-*** Return ''(r, y)''.
+*** Return the unique point ''P'' such that ''x(P) = x'' and ''y(P) = y''.
** The function ''point(x)'', where ''x'' is a 32-byte array, returns the point ''P = lift_x(int(x))''.
** The function ''hash(x)'', where ''x'' is a byte array, returns the 32-byte SHA256 hash of ''x''.
** The function ''jacobi(x)'', where ''x'' is an integer, returns the [https://en.wikipedia.org/wiki/Jacobi_symbol Jacobi symbol] of ''x / p''. It is equal to ''x(p-1)/2 mod p'' ([https://en.wikipedia.org/wiki/Euler%27s_criterion Euler's criterion])[For points ''P'' on the secp256k1 curve it holds that ''jacobi(y(P)) ≠ 0''.].