Skip to content

Commit

Permalink
"define" not "declare"
Browse files Browse the repository at this point in the history
  • Loading branch information
glennj committed Dec 8, 2024
1 parent 62db691 commit e14ad01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/circular-buffer/circular-buffer.sml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ structure CircularBuffer :> sig
val overwrite : buffer -> int -> unit
end = struct

type buffer = unit (* TODO declare the data structure *)
type buffer = unit (* TODO define the data structure *)

exception BufferFull
exception BufferEmpty
Expand Down

0 comments on commit e14ad01

Please sign in to comment.