@@ -162,7 +162,7 @@ var liveProps = map[xml.Name]struct {
162162
163163// TODO(nigeltao) merge props and allprop?
164164
165- // Props returns the status of the properties named pnames for resource name.
165+ // props returns the status of the properties named pnames for resource name.
166166//
167167// Each Propstat has a unique status and each property name will only be part
168168// of one Propstat element.
@@ -213,7 +213,7 @@ func props(ctx context.Context, fs FileSystem, ls LockSystem, name string, pname
213213 return makePropstats (pstatOK , pstatNotFound ), nil
214214}
215215
216- // Propnames returns the property names defined for resource name.
216+ // propnames returns the property names defined for resource name.
217217func propnames (ctx context.Context , fs FileSystem , ls LockSystem , name string ) ([]xml.Name , error ) {
218218 f , err := fs .OpenFile (ctx , name , os .O_RDONLY , 0 )
219219 if err != nil {
@@ -246,7 +246,7 @@ func propnames(ctx context.Context, fs FileSystem, ls LockSystem, name string) (
246246 return pnames , nil
247247}
248248
249- // Allprop returns the properties defined for resource name and the properties
249+ // allprop returns the properties defined for resource name and the properties
250250// named in include.
251251//
252252// Note that RFC 4918 defines 'allprop' to return the DAV: properties defined
@@ -272,7 +272,7 @@ func allprop(ctx context.Context, fs FileSystem, ls LockSystem, name string, inc
272272 return props (ctx , fs , ls , name , pnames )
273273}
274274
275- // Patch patches the properties of resource name. The return values are
275+ // patch patches the properties of resource name. The return values are
276276// constrained in the same manner as DeadPropsHolder.Patch.
277277func patch (ctx context.Context , fs FileSystem , ls LockSystem , name string , patches []Proppatch ) ([]Propstat , error ) {
278278 conflict := false
0 commit comments