Skip to content

Commit

Permalink
docs: fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
seliopou committed Feb 2, 2018
1 parent 500e041 commit 6b9372e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/faraday.ml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ end = struct
let enqueue_front e t =
(* This is in general not true for Deque data structures, but the usage
* below ensures that there is always space to push an element back on the
* front. A [enqueue_front] is always preceded by a [dequeue], with no
* front. An [enqueue_front] is always preceded by a [dequeue], with no
* intervening operations. *)
assert (t.front > 0);
t.front <- t.front - 1;
Expand Down

0 comments on commit 6b9372e

Please sign in to comment.