@@ -162,7 +162,7 @@ var liveProps = map[xml.Name]struct {
162
162
163
163
// TODO(nigeltao) merge props and allprop?
164
164
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.
166
166
//
167
167
// Each Propstat has a unique status and each property name will only be part
168
168
// of one Propstat element.
@@ -213,7 +213,7 @@ func props(ctx context.Context, fs FileSystem, ls LockSystem, name string, pname
213
213
return makePropstats (pstatOK , pstatNotFound ), nil
214
214
}
215
215
216
- // Propnames returns the property names defined for resource name.
216
+ // propnames returns the property names defined for resource name.
217
217
func propnames (ctx context.Context , fs FileSystem , ls LockSystem , name string ) ([]xml.Name , error ) {
218
218
f , err := fs .OpenFile (ctx , name , os .O_RDONLY , 0 )
219
219
if err != nil {
@@ -246,7 +246,7 @@ func propnames(ctx context.Context, fs FileSystem, ls LockSystem, name string) (
246
246
return pnames , nil
247
247
}
248
248
249
- // Allprop returns the properties defined for resource name and the properties
249
+ // allprop returns the properties defined for resource name and the properties
250
250
// named in include.
251
251
//
252
252
// 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
272
272
return props (ctx , fs , ls , name , pnames )
273
273
}
274
274
275
- // Patch patches the properties of resource name. The return values are
275
+ // patch patches the properties of resource name. The return values are
276
276
// constrained in the same manner as DeadPropsHolder.Patch.
277
277
func patch (ctx context.Context , fs FileSystem , ls LockSystem , name string , patches []Proppatch ) ([]Propstat , error ) {
278
278
conflict := false
0 commit comments