Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
duckpilot committed May 5, 2010
1 parent e22f18a commit 7d252ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/froc/froc.mli
Expand Up @@ -460,8 +460,8 @@ val memo :
The unit argument makes it possible to memoize a recursive
function, using the following idiom: {[
let m = memo () in (* creates the memo table *)
let rec f x = ... memo f y in
let f x = memo f x
let rec f x = ... m f y in
let f x = m f x
]}
The default hash function is not appropriate for behaviors and
Expand Down
4 changes: 2 additions & 2 deletions src/froc/froc_sa.mli
Expand Up @@ -175,8 +175,8 @@ val memo :
The unit argument makes it possible to memoize a recursive
function, using the following idiom: {[
let m = memo () in (* creates the memo table *)
let rec f x = ... memo f y in
let f x = memo f x
let rec f x = ... m f y in
let f x = m f x
]}
The default hash function is not appropriate for changeables
Expand Down

0 comments on commit 7d252ab

Please sign in to comment.