]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/src/build/scanner.jam
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / tools / build / src / build / scanner.jam
index ed5507029a8c1a26c1bb1c0d3ed13a00658e2a6b..bbb9b4db4e40c0a8eddbea05f77d5e980da7554a 100644 (file)
@@ -42,16 +42,16 @@ class scanner
     rule pattern ( )
     {
         import errors : error : errors.error ;
-        errors.error "method must be overriden" ;
+        errors.error "method must be overridden" ;
     }
 
     # Establish necessary relationship between targets, given an actual target
-    # beeing scanned and a list of pattern matches in that file.
+    # being scanned and a list of pattern matches in that file.
     #
     rule process ( target : matches * )
     {
         import errors : error : errors.error ;
-        errors.error "method must be overriden" ;
+        errors.error "method must be overridden" ;
     }
 }
 
@@ -102,7 +102,7 @@ rule get ( scanner-class : property-set )
     if ! $(scanner-class) in $(.registered)
     {
         import errors ;
-        errors.error "attempt to get an unregisted scanner" ;
+        errors.error "attempt to get an unregistered scanner" ;
     }
 
     local r = $(.rv-cache.$(property-set)) ;