From aa998db89ee33927502835b846c75d00e393f920 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Thu, 6 Jul 2017 09:46:12 -0700 Subject: [PATCH] More GoDoc --- cmd/rqlite/main.go | 1 + cmd/rqlited/main.go | 13 ++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd/rqlite/main.go b/cmd/rqlite/main.go index 8f155f41..13be1532 100644 --- a/cmd/rqlite/main.go +++ b/cmd/rqlite/main.go @@ -1,3 +1,4 @@ +// Command rqlite is the command-line interface for rqlite. package main import ( diff --git a/cmd/rqlited/main.go b/cmd/rqlited/main.go index cd906306..47d3e445 100644 --- a/cmd/rqlited/main.go +++ b/cmd/rqlited/main.go @@ -1,12 +1,11 @@ /* -rqlite -- replicating SQLite via the Raft consensus protocol.. +Command rqlited is the rqlite server. -rqlite is a distributed system that provides a replicated relational database, -using SQLite as the storage engine. - -rqlite is written in Go and uses Raft to achieve consensus across all the -instances of the SQLite databases. rqlite ensures that every change made to -the database is made to a majority of underlying SQLite files, or none-at-all. +rqlite is a lightweight, distributed system that provides a replicated +relational database, using SQLite as the storage engine. rqlite is written +in Go and uses Raft to achieve consensus across all the instances of the +SQLite databases. rqlite ensures that every change made to the database is +made to a majority of underlying SQLite files, or none-at-all. */ package main