diff --git a/collects/planet/planet.scrbl b/collects/planet/planet.scrbl index ce6218864f..bc63b851ab 100644 --- a/collects/planet/planet.scrbl +++ b/collects/planet/planet.scrbl @@ -78,13 +78,18 @@ and there's no need for you to even know whether or not a particular package is installed on your computer or the computers where your code will be deployed. -If you want to find all of the packages that planet has available, -visit +If you want to find all of the latest versions of the +packages that planet has available, visit @centered{@url{http://planet.racket-lang.org/servlets/pkg-info.ss}} -It returns a list of lists of length 4. Each sublist represents +It returns a list matching the contract +@racketblock[(listof (list/c string? + string? + (list/c exact-integer? + exact-integer?)))] +Each sublist represents the latest version of one of the packages and contains the -userid (as a string), the package name (including ".plt"), and -the version. +userid, the package name (including ".plt"), and +the version (major and minor numbers). @subsection{Shorthand Syntax}