Renamed typed/plot' to plot/typed'

This commit is contained in:
Neil Toronto 2012-12-17 11:52:24 -07:00
parent 60dd8d065f
commit 009293885b
33 changed files with 11 additions and 8 deletions

View File

@ -1503,9 +1503,7 @@ path/s is either such a string or a list of them.
"collects/texpict/face-demo.rkt" drdr:command-line (mzc *)
"collects/trace" responsible (mflatt robby)
"collects/typed" responsible (samth)
"collects/typed/plot" responsible (ntoronto)
"collects/typed/rackunit" responsible (jay)
"collects/typed/tests/typed-plot-tests.rkt" responsible (ntoronto)
"collects/typed-racket" responsible (samth stamourv)
"collects/typed-racket/base-env/base-special-env.rkt" drdr:command-line (raco "make" *)
"collects/typed-racket/optimizer" responsible (stamourv)

View File

@ -8,7 +8,10 @@
@author{@(author+email "Neil Toronto" (author-email))}
@defmodule[plot]
@defmodule*/no-declare[(typed/plot)]
Typed Racket users should use
@defmodule*/no-declare[(plot/typed)]
@(plot-name) provides a flexible interface for producing nearly any kind of plot.
It includes many common kinds already, such as scatter plots, line plots, contour plots, histograms, and 3D surfaces and isosurfaces.

View File

@ -1,6 +1,8 @@
#lang typed/racket
(require typed/plot)
;; These tests "pass" when they pass the type checker and raise no exceptions
(require plot/typed)
(define xs (build-list 1000 (λ (_) (random))))
(define ys (build-list 1000 (λ (_) (random))))

4
collects/plot/typed.rkt Normal file
View File

@ -0,0 +1,4 @@
#lang racket/base
(require "typed/main.rkt")
(provide (all-from-out "typed/main.rkt"))

View File

@ -1,4 +0,0 @@
#lang racket/base
(require "plot/main.rkt")
(provide (all-from-out "plot/main.rkt"))