Skip to content

Commit

Permalink
#1 fixing bug and fixing typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
alsbury committed Oct 20, 2022
1 parent 8d5d376 commit bc496c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/Consistency.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public static function minimizeLatency()
return new self(null, null, true);
}

public static function fullConsistent()
public static function fullyConsistent()
{
return new self(null, null, false, true);
return new self(null, null, null, true);
}

public static function atExactSnapshot(ZedToken|string $token): Consistency
Expand Down

0 comments on commit bc496c9

Please sign in to comment.