Skip to content

Commit fbfaf26

Browse files
committed
Merge pull request #1200 from tysongach/tg-capitalization
Properly capitalize LibSass
2 parents b078476 + 40af5ea commit fbfaf26

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Readme.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Libsass
1+
LibSass
22
=======
33

44
by Aaron Leung ([@akhleung]) and Hampton Catlin ([@hcatlin])
@@ -11,7 +11,7 @@ by Aaron Leung ([@akhleung]) and Hampton Catlin ([@hcatlin])
1111

1212
https://github.com/sass/libsass
1313

14-
Libsass is just a library, but if you want to RUN libsass,
14+
LibSass is just a library, but if you want to RUN LibSass,
1515
then go to https://github.com/sass/sassc or
1616
https://github.com/sass/ruby-libsass or
1717
[find your local implementer](https://github.com/sass/libsass/wiki/Implementations).
@@ -23,19 +23,19 @@ On Windows, you need MinGW with GCC 4.6+ or VS 2013 Update 4+. It is also possib
2323
About
2424
-----
2525

26-
Libsass is a C/C++ port of the Sass CSS precompiler. The original version was written in Ruby, but this version is meant for efficiency and portability.
26+
LibSass is a C/C++ port of the Sass CSS precompiler. The original version was written in Ruby, but this version is meant for efficiency and portability.
2727

2828
This library strives to be light, simple, and easy to build and integrate with a variety of platforms and languages.
2929

3030
Developing
3131
----------
3232

33-
As you may have noticed, the libsass repo itself has
33+
As you may have noticed, the LibSass repo itself has
3434
no executables and no tests. Oh noes! How can you develop???
3535

3636
Well, luckily, SassC is the official binary wrapper for
37-
libsass and is *always* kept in sync. SassC uses a git submodule
38-
to include libsass. When developing libsass, its best to actually
37+
LibSass and is *always* kept in sync. SassC uses a git submodule
38+
to include LibSass. When developing LibSass, its best to actually
3939
check out SassC and develop in that directory with the SassC spec
4040
and tests there.
4141

@@ -44,21 +44,21 @@ We even run Travis tests for SassC!
4444
Tests
4545
-------
4646

47-
Since libsass is a pure library, tests are run through the [SassSpec](https://github.com/sass/sass-spec) project using the [SassC](http://github.com/sass/sassc) driver.
47+
Since LibSass is a pure library, tests are run through the [SassSpec](https://github.com/sass/sass-spec) project using the [SassC](http://github.com/sass/sassc) driver.
4848

49-
To run tests against libsass while developing, you can run `./script/spec`. This will clone SassC and Sass-Spec under the project folder and then run the Sass-Spec test suite. You may want to update the clones to ensure you have the latest version.
49+
To run tests against LibSass while developing, you can run `./script/spec`. This will clone SassC and Sass-Spec under the project folder and then run the Sass-Spec test suite. You may want to update the clones to ensure you have the latest version.
5050

5151
Library Usage
5252
-------------
5353

54-
While libsass is a library primarily written in C++, it provides a simple
55-
C interface which should be used by most implementers. Libsass does not do
54+
While LibSass is a library primarily written in C++, it provides a simple
55+
C interface which should be used by most implementers. LibSass does not do
5656
much on its own without an implementer. This can be a command line tool, like
5757
[sassc](https://github.com/sass/sassc) or a [binding](https://github.com/sass/libsass/wiki/Implementations)
5858
to your favorite programing language.
5959

60-
If you want to build or interface with libsass, we recommend to check out the
61-
wiki pages about [building libsass](https://github.com/sass/libsass/wiki/Building-Libsass) and
60+
If you want to build or interface with LibSass, we recommend to check out the
61+
wiki pages about [building LibSass](https://github.com/sass/libsass/wiki/building-libsass) and
6262
the [C-API documentation](https://github.com/sass/libsass/wiki/API-Documentation).
6363

6464
About Sass

0 commit comments

Comments
 (0)