This is the Reference Assignment operator.
val ( := ) : 'a ref -> 'a -> unit
Given a reference rrr, sets the contents of rrr to the given value and returns unit:
unit
ᐅ let x = ref 1 in x := 2; !x ;; - : int = 2