Add periods throughout

This commit is contained in:
Tyler Gibbons 2015-10-01 19:52:49 -07:00
parent 893bd6ca00
commit 5c41e4fe5d
2 changed files with 16 additions and 16 deletions

View file

@ -141,14 +141,14 @@ func (p *Path) Except(path *Path) *Path {
}
// Follow allows you to stitch two paths together. The resulting path will start
// from where the first path left off and continue iterating down the path given
// from where the first path left off and continue iterating down the path given.
func (p *Path) Follow(path *Path) *Path {
p.stack = append(p.stack, followMorphism(path))
return p
}
// FollowReverse is the same as follow, except it will iterate backwards up the
// path given as argument
// path given as argument.
func (p *Path) FollowReverse(path *Path) *Path {
p.stack = append(p.stack, followMorphism(path.Reverse()))
return p
@ -167,7 +167,7 @@ func (p *Path) Save(via interface{}, tag string) *Path {
}
// SaveReverse is the same as Save, only in the reverse direction
// (the subject of the linkage should be tagged, instead of the object)
// (the subject of the linkage should be tagged, instead of the object).
func (p *Path) SaveReverse(via interface{}, tag string) *Path {
p.stack = append(p.stack, saveReverseMorphism(via, tag))
return p