Commit c7c12d30 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 6cc63c05
// Copyright (C) 2018 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2018-2019 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
......@@ -75,7 +75,11 @@ type ConnOptions struct {
NoSync bool // don't sync with storage to get its last tid.
}
// XXX place=?
// String represents connection options in human-readable form.
//
// For example:
//
// (@head, sync)
func (opt *ConnOptions) String() string {
s := "(@"
if opt.At != 0 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment