@@ -267,11 +267,11 @@ def compile(**kwargs):
267267 """There are three modes of parameters :func:`compile()` can take:
268268 ``string``, ``filename``, and ``dirname``.
269269
270- The ``string`` parameter is the most basic way to compile SASS .
271- It simply takes a string of SASS code, and then returns a compiled
270+ The ``string`` parameter is the most basic way to compile Sass .
271+ It simply takes a string of Sass code, and then returns a compiled
272272 CSS string.
273273
274- :param string: SASS source code to compile. it's exclusive to
274+ :param string: Sass source code to compile. it's exclusive to
275275 ``filename`` and ``dirname`` parameters
276276 :type string: :class:`str`
277277 :param output_style: an optional coding style of the compiled result.
@@ -282,7 +282,7 @@ def compile(**kwargs):
282282 :const:`False` by default
283283 :type source_comments: :class:`bool`
284284 :param include_paths: an optional list of paths to find ``@import``\ ed
285- SASS /CSS source files
285+ Sass /CSS source files
286286 :type include_paths: :class:`collections.Sequence`
287287 :param precision: optional precision for numbers. :const:`5` by default.
288288 :type precision: :class:`int`
@@ -292,7 +292,7 @@ def compile(**kwargs):
292292 :type custom_functions: :class:`collections.Set`,
293293 :class:`collections.Sequence`,
294294 :class:`collections.Mapping`
295- :param indented: optional declaration that the string is SASS , not SCSS
295+ :param indented: optional declaration that the string is Sass , not SCSS
296296 formatted. :const:`False` by default
297297 :type indented: :class:`bool`
298298 :returns: the compiled CSS string
@@ -302,12 +302,12 @@ def compile(**kwargs):
302302 :type importers: :class:`collections.Callable`
303303 :rtype: :class:`str`
304304 :raises sass.CompileError: when it fails for any reason
305- (for example the given SASS has broken syntax)
305+ (for example the given Sass has broken syntax)
306306
307307 The ``filename`` is the most commonly used way. It takes a string of
308- SASS filename, and then returns a compiled CSS string.
308+ Sass filename, and then returns a compiled CSS string.
309309
310- :param filename: the filename of SASS source code to compile.
310+ :param filename: the filename of Sass source code to compile.
311311 it's exclusive to ``string`` and ``dirname`` parameters
312312 :type filename: :class:`str`
313313 :param output_style: an optional coding style of the compiled result.
@@ -322,7 +322,7 @@ def compile(**kwargs):
322322 using source maps. :const:`None` by default.
323323 :type source_map_filename: :class:`str`
324324 :param include_paths: an optional list of paths to find ``@import``\ ed
325- SASS /CSS source files
325+ Sass /CSS source files
326326 :type include_paths: :class:`collections.Sequence`
327327 :param precision: optional precision for numbers. :const:`5` by default.
328328 :type precision: :class:`int`
@@ -340,13 +340,13 @@ def compile(**kwargs):
340340 and the source map string if ``source_map_filename`` is set
341341 :rtype: :class:`str`, :class:`tuple`
342342 :raises sass.CompileError: when it fails for any reason
343- (for example the given SASS has broken syntax)
343+ (for example the given Sass has broken syntax)
344344 :raises exceptions.IOError: when the ``filename`` doesn't exist or
345345 cannot be read
346346
347347 The ``dirname`` is useful for automation. It takes a pair of paths.
348348 The first of the ``dirname`` pair refers the source directory, contains
349- several SASS source files to compiled. SASS source files can be nested
349+ several Sass source files to compiled. Sass source files can be nested
350350 in directories. The second of the pair refers the output directory
351351 that compiled CSS files would be saved. Directory tree structure of
352352 the source directory will be maintained in the output directory as well.
@@ -364,7 +364,7 @@ def compile(**kwargs):
364364 :const:`False` by default
365365 :type source_comments: :class:`bool`
366366 :param include_paths: an optional list of paths to find ``@import``\ ed
367- SASS /CSS source files
367+ Sass /CSS source files
368368 :type include_paths: :class:`collections.Sequence`
369369 :param precision: optional precision for numbers. :const:`5` by default.
370370 :type precision: :class:`int`
@@ -375,7 +375,7 @@ def compile(**kwargs):
375375 :class:`collections.Sequence`,
376376 :class:`collections.Mapping`
377377 :raises sass.CompileError: when it fails for any reason
378- (for example the given SASS has broken syntax)
378+ (for example the given Sass has broken syntax)
379379
380380 .. _custom-functions:
381381
0 commit comments