Skip to content

Commit a16324b

Browse files
committed
LESS -> Less
1 parent 68a244e commit a16324b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

book/02-using-atom/sections/06-customizing.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ You can open the Developer Tools by hitting `alt-cmd-I`, which will bring up the
2929
.Developer Tools
3030
image::images/devtools.png[developer tools]
3131

32-
You can now easily inspect all the elements in your current editor. If you want to update the style of something, you simply need to figure out what classes it has and write a LESS rule into your styles file to modify it.
32+
You can now easily inspect all the elements in your current editor. If you want to update the style of something, you simply need to figure out what classes it has and write a Less rule into your styles file to modify it.
3333

34-
If you are unfamiliar with LESS, it is a basic CSS preprocessor, making some things in CSS a bit easier. You can learn more about it at http://www.lesscss.org[lesscss.org]. If you prefer to use CSS instead, this file can also be named _styles.css_ and contain CSS.
34+
If you are unfamiliar with Less, it is a basic CSS preprocessor, making some things in CSS a bit easier. You can learn more about it at http://www.lesscss.org[lesscss.org]. If you prefer to use CSS instead, this file can also be named _styles.css_ and contain CSS.
3535

3636
[[_customizing_keybindings]]
3737
==== Customizing Key Bindings

book/03-hacking-atom/sections/01-tools.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=== Tools of the Trade
22

3-
To begin, there are a few things we'll assume you know, at least to some degree. Since all of Atom is implemented using web technologies, we have to assume you know web technologies such as JavaScript and CSS. Specifically, we'll be implementing everything in CoffeeScript and LESS, which are preprocessors for Javascript and CSS respectively.
3+
To begin, there are a few things we'll assume you know, at least to some degree. Since all of Atom is implemented using web technologies, we have to assume you know web technologies such as JavaScript and CSS. Specifically, we'll be implementing everything in CoffeeScript and Less, which are preprocessors for Javascript and CSS respectively.
44

55
If you don't know CoffeeScript, but you are familiar with JavaScript, you shouldn't have too much trouble. Here is an example of some simple CoffeeScript code:
66

@@ -27,4 +27,4 @@ Just about everything you can do with CoffeeScript in Atom is also doable in Jav
2727

2828
You can brush up on CoffeeScript at http://coffeescript.org/[coffeescript.org].
2929

30-
LESS is even simpler transition from CSS. It adds a number of useful things like variables and functions to CSS. You can brush up on your LESS skills at http://lesscss.org/[lesscss.org]. Our usage of LESS won't get too complex in this book however, so as long as you know basic CSS you should be fine.
30+
Less is an even simpler transition from CSS. It adds a number of useful things like variables and functions to CSS. You can brush up on your Less skills at http://lesscss.org/[lesscss.org]. Our usage of Less won't get too complex in this book however, so as long as you know basic CSS you should be fine.

0 commit comments

Comments
 (0)