Commit 0f7de4a9 authored by Eric Myhre's avatar Eric Myhre

Spelling fix.

parent f163fee9
...@@ -62,13 +62,13 @@ func ParsePathSegment(s string) PathSegment { ...@@ -62,13 +62,13 @@ func ParsePathSegment(s string) PathSegment {
return PathSegment{s: s} return PathSegment{s: s}
} }
// PathSegmentOfString boxes a string into a PathSegement. // PathSegmentOfString boxes a string into a PathSegment.
// It does not attempt to parse any escaping; use ParsePathSegment for that. // It does not attempt to parse any escaping; use ParsePathSegment for that.
func PathSegmentOfString(s string) PathSegment { func PathSegmentOfString(s string) PathSegment {
return PathSegment{s: s} return PathSegment{s: s}
} }
// PathSegmentOfString boxes an int into a PathSegement. // PathSegmentOfString boxes an int into a PathSegment.
func PathSegmentOfInt(i int) PathSegment { func PathSegmentOfInt(i int) PathSegment {
return PathSegment{i: i} return PathSegment{i: i}
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment