diff --git a/lib/rscons/builders/library.rb b/lib/rscons/builders/library.rb index 8edba0c..867b507 100644 --- a/lib/rscons/builders/library.rb +++ b/lib/rscons/builders/library.rb @@ -1,6 +1,6 @@ module Rscons module Builders - # A default RScons builder that produces a static library archive. + # A default Rscons builder that produces a static library archive. class Rscons::Builders::Library < Rscons::Builder def default_variables(env) { diff --git a/lib/rscons/builders/object.rb b/lib/rscons/builders/object.rb index 3ba0fa3..506c2ef 100644 --- a/lib/rscons/builders/object.rb +++ b/lib/rscons/builders/object.rb @@ -1,6 +1,6 @@ module Rscons module Builders - # A default RScons builder which knows how to produce an object file from + # A default Rscons builder which knows how to produce an object file from # various types of source files. class Object < Builder KNOWN_SUFFIXES = { diff --git a/lib/rscons/builders/program.rb b/lib/rscons/builders/program.rb index f25924e..481c1f5 100644 --- a/lib/rscons/builders/program.rb +++ b/lib/rscons/builders/program.rb @@ -1,6 +1,6 @@ module Rscons module Builders - # A default RScons builder that knows how to link object files into an + # A default Rscons builder that knows how to link object files into an # executable program. class Rscons::Builders::Program < Rscons::Builder def default_variables(env) diff --git a/lib/rscons/environment.rb b/lib/rscons/environment.rb index 28d6a89..a2c4cc1 100644 --- a/lib/rscons/environment.rb +++ b/lib/rscons/environment.rb @@ -2,7 +2,7 @@ require 'set' require 'fileutils' module Rscons - # The Environment class is the main programmatic interface to RScons. It + # The Environment class is the main programmatic interface to Rscons. It # contains a collection of construction variables, options, builders, and # rules for building targets. class Environment @@ -246,7 +246,7 @@ module Rscons # Build a list of source files into files containing one of the suffixes # given by suffixes. - # This method is used internally by RScons builders. + # This method is used internally by Rscons builders. # @param sources [Array] List of source files to build. # @param suffixes [Array] List of suffixes to try to convert source files into. # @param cache [Cache] The Cache. @@ -294,7 +294,7 @@ module Rscons end # Parse dependencies for a given target from a Makefile. - # This method is used internally by RScons builders. + # This method is used internally by Rscons builders. # @param mf_fname [String] File name of the Makefile to read. # @param target [String] Name of the target to gather dependencies for. def self.parse_makefile_deps(mf_fname, target)