doc: Add proper requires to Scribble files.

This commit is contained in:
Sergiu Ivanov 2020-11-29 22:16:23 +01:00
parent 157c226259
commit b8fcfb2374
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#lang scribble/manual
@(require (for-label racket "../functions.rkt"))
@(require (for-label racket "../functions.rkt" "../utils.rkt"))
@title[#:tag "functions"]{dds/functions: Formal Functions}

View File

@ -1,5 +1,5 @@
#lang scribble/manual
@(require (for-label racket graph "../networks.rkt"))
@(require (for-label racket graph "../networks.rkt" "../utils.rkt" "../functions.rkt" racket/random racket/hash))
@title[#:tag "networks"]{dds/networks: Formal Dynamical Networks}