From 0a183dfff9253938e99b9787728cc5a87f2cafcf Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 25 Jul 2024 12:44:58 -0400 Subject: [PATCH] lang: funcs: txn, util: Fix typos --- lang/funcs/txn/txn.go | 2 +- util/fs.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/funcs/txn/txn.go b/lang/funcs/txn/txn.go index 64b213bf..2995e12b 100644 --- a/lang/funcs/txn/txn.go +++ b/lang/funcs/txn/txn.go @@ -539,7 +539,7 @@ func (obj *GraphTxn) commit() error { // populate operations before the Commit is run.) func (obj *GraphTxn) Commit() error { // Lock our internal state mutex first... this prevents other AddVertex - // or similar calls from interferring with our work here. + // or similar calls from interfering with our work here. obj.mutex.Lock() defer obj.mutex.Unlock() diff --git a/util/fs.go b/util/fs.go index bfac644a..37c52074 100644 --- a/util/fs.go +++ b/util/fs.go @@ -51,7 +51,7 @@ type AferoFs struct { func (obj *AferoFs) URI() string { if obj.Scheme != "" { // if obj.Path is not empty and doesn't start with a slash, then - // the first chunk will dissappear when being parsed with stdlib + // the first chunk will disappear when being parsed with stdlib return obj.Scheme + "://" + obj.Path } return fmt.Sprintf("%s://"+"/", obj.Name()) // old