##// END OF EJS Templates
templatekw: fix documentation typos
Matt Harbison -
r41143:70e3e3da stable
parent child Browse files
Show More
@@ -583,7 +583,7 b' def showpeerurls(context, mapping):'
583
583
584 @templatekeyword("predecessors", requires={'repo', 'ctx'})
584 @templatekeyword("predecessors", requires={'repo', 'ctx'})
585 def showpredecessors(context, mapping):
585 def showpredecessors(context, mapping):
586 """Returns the list if the closest visible successors. (EXPERIMENTAL)"""
586 """Returns the list of the closest visible successors. (EXPERIMENTAL)"""
587 repo = context.resource(mapping, 'repo')
587 repo = context.resource(mapping, 'repo')
588 ctx = context.resource(mapping, 'ctx')
588 ctx = context.resource(mapping, 'ctx')
589 predecessors = sorted(obsutil.closestpredecessors(repo, ctx.node()))
589 predecessors = sorted(obsutil.closestpredecessors(repo, ctx.node()))
@@ -621,7 +621,7 b' def showstatus(context, mapping):'
621 @templatekeyword("successorssets", requires={'repo', 'ctx'})
621 @templatekeyword("successorssets", requires={'repo', 'ctx'})
622 def showsuccessorssets(context, mapping):
622 def showsuccessorssets(context, mapping):
623 """Returns a string of sets of successors for a changectx. Format used
623 """Returns a string of sets of successors for a changectx. Format used
624 is: [ctx1, ctx2], [ctx3] if ctx has been splitted into ctx1 and ctx2
624 is: [ctx1, ctx2], [ctx3] if ctx has been split into ctx1 and ctx2
625 while also diverged into ctx3. (EXPERIMENTAL)"""
625 while also diverged into ctx3. (EXPERIMENTAL)"""
626 repo = context.resource(mapping, 'repo')
626 repo = context.resource(mapping, 'repo')
627 ctx = context.resource(mapping, 'ctx')
627 ctx = context.resource(mapping, 'ctx')
General Comments 0
You need to be logged in to leave comments. Login now