Bug 1319582 - Fix misspelling of hierarchy in IPDL error message. r=billm draft
authorAndrew McCreight <continuation@gmail.com>
Tue, 22 Nov 2016 15:12:05 -0800
changeset 442648 9250d76da5f9c14b7d4a3e6913a3ed9b34e58b9c
parent 442647 34dd0cd5cae1993b768b0173f9432544ce993b85
child 443022 a20e172b3ae815c22c62083b67cc202e6034f18f
push id36773
push userbmo:continuation@gmail.com
push dateWed, 23 Nov 2016 00:53:06 +0000
reviewersbillm
bugs1319582
milestone53.0a1
Bug 1319582 - Fix misspelling of hierarchy in IPDL error message. r=billm MozReview-Commit-ID: HmTrQKlA60D
ipc/ipdl/ipdl/type.py
--- a/ipc/ipdl/ipdl/type.py
+++ b/ipc/ipdl/ipdl/type.py
@@ -1364,17 +1364,17 @@ class CheckTypes(TcheckVisitor):
                     p.decl.loc,
                    "managed protocol `%s' requires a `delete()' message to be declared",
                     p.name)
         else:
             cycles = checkcycles(p.decl.type)
             if cycles:
                 self.error(
                     p.decl.loc,
-                    "cycle(s) detected in manager/manages heirarchy: %s",
+                    "cycle(s) detected in manager/manages hierarchy: %s",
                     formatcycles(cycles))
 
         if 1 == len(ptype.managers) and ptype is ptype.manager():
             self.error(
                 p.decl.loc,
                 "top-level protocol `%s' cannot manage itself",
                 p.name)