You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you look for "inv_zero" in the mathlib docs, you would expect to find inv_zero as the first result. Annoyingly, you get this instead:
... because inv_zero is secretly GroupWithZero.inv_zero exported to _root_.
This is an issue because exported lemmas are usually of widespread use (else we wouldn't be exporting them in the first place), but them being exports significantly hinders their discoverability.
The text was updated successfully, but these errors were encountered:
If you look for "inv_zero" in the mathlib docs, you would expect to find
inv_zero
as the first result. Annoyingly, you get this instead:... because
inv_zero
is secretlyGroupWithZero.inv_zero
exported to_root_
.This is an issue because
export
ed lemmas are usually of widespread use (else we wouldn't be exporting them in the first place), but them being exports significantly hinders their discoverability.The text was updated successfully, but these errors were encountered: