Skip to content

Commit b6e74c3

Browse files
committed
Fix comment
1 parent 8459946 commit b6e74c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

query_write.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ func (t Term) Delete(optArgs ...DeleteOpts) Term {
8989
}
9090

9191
// Sync ensures that writes on a given table are written to permanent storage.
92-
// Queries that specify soft durability ({durability: 'soft'}) do not give such
93-
// guarantees, so Sync can be used to ensure the state of these queries. A call
94-
// to Sync does not return until all previous writes to the table are persisted.
92+
// Queries that specify soft durability do not give such guarantees, so Sync
93+
// can be used to ensure the state of these queries. A call to Sync does not
94+
// return until all previous writes to the table are persisted.
9595
func (t Term) Sync(args ...interface{}) Term {
9696
return constructMethodTerm(t, "Sync", p.Term_SYNC, args, map[string]interface{}{})
9797
}

0 commit comments

Comments
 (0)