Skip to content

Commit 2c47dbb

Browse files
vallentinxzyfer
authored andcommitted
Fixed typos
1 parent 750a62d commit 2c47dbb

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ direction for corners that lack test coverage). Foremost we rely on good and con
3232

3333
## My error is hiding in a big code base
3434
1. we do not have time to support your code base!
35-
2. to fix occuring issues we need precise bug reports
35+
2. to fix occurring issues we need precise bug reports
3636
3. the more precise you are, the faster we can help you
3737
4. lazy reports get overlooked even when exposing serious bugs
3838
5. it's not hard to do, it only takes time

docs/api-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ struct Sass_Compiler* sass_make_file_compiler (struct Sass_File_Context* file_ct
171171
struct Sass_Compiler* sass_make_data_compiler (struct Sass_Data_Context* data_ctx);
172172

173173
// Execute the different compilation steps individually
174-
// Usefull if you only want to query the included files
174+
// Useful if you only want to query the included files
175175
int sass_compiler_parse (struct Sass_Compiler* compiler);
176176
int sass_compiler_execute (struct Sass_Compiler* compiler);
177177

docs/api-doc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const char* libsass_language_version(void);
152152

153153
The `input_path` is part of `Sass_Options`, but it also is the main option for
154154
`Sass_File_Context`. It is also used to generate relative file links in source-
155-
maps. Therefore it is pretty usefull to pass this information if you have a
155+
maps. Therefore it is pretty useful to pass this information if you have a
156156
`Sass_Data_Context` and know the original path.
157157

158158
**output_path**

docs/api-value-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ int main( int argc, const char* argv[] )
3131
sass_delete_value(total);
3232

3333
// print the result - you may want to make
34-
// sure result is indeed a string, altough
34+
// sure result is indeed a string, although
3535
// stringify guarantees to return a string
3636
// if (sass_value_is_string(result)) {}
3737
// really depends on your level of paranoia

docs/compatibility-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This document is to serve as a living, changing plan for getting LibSass caught up with Ruby Sass.
22

3-
_Note: an "s" preceeding a version number is specifying a Ruby Sass version. Without an s, it's a version of LibSass._
3+
_Note: an "s" preceding a version number is specifying a Ruby Sass version. Without an s, it's a version of LibSass._
44

55
# Goal
66
**Our goal is to reach full s3.4 compatibility as soon as possible. LibSass version 3.4 will behave just like Ruby Sass 3.4**

docs/dev-ast-memory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ I often use the terminology of "pickup". This means the moment when
5050
a raw pointer not under any control is assigned to a reference counted
5151
object (`XYZ_Obj = XYZ_Ptr`). From that point on memory will be
5252
automatically released once the object goes out of scope (but only
53-
if the reference counter reaches zero). Main point beeing, you don't
53+
if the reference counter reaches zero). Main point being, you don't
5454
have to worry about memory management yourself.
5555

5656
### Object detach
@@ -212,7 +212,7 @@ profound advantages:
212212

213213
- Better GCC 4.4 compatibility (which most code still has OOTB)
214214
- Not thread safe (give us some free performance on some compiler)
215-
- Beeing able to track memory allocations for debugging purposes
215+
- Being able to track memory allocations for debugging purposes
216216
- Adding additional features if needed (as seen in `detach`)
217217
- Optional: optimized weak pointer implementation possible
218218

docs/source-map-internals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if (lex< custom_property_name >()) {
2828

2929
## How is the `source_position` calculated
3030

31-
This is automatically done with `lex` in `parser.hpp`. Whenever something is lexed, the `source_position` is updated. But be aware that `source_position` points to the begining of the parsed text. If you need a mapping for the position where the parsing ended, you need to add another call to `lex` (to match nothing)!
31+
This is automatically done with `lex` in `parser.hpp`. Whenever something is lexed, the `source_position` is updated. But be aware that `source_position` points to the beginning of the parsed text. If you need a mapping for the position where the parsing ended, you need to add another call to `lex` (to match nothing)!
3232

3333
```
3434
lex< exactly < empty_str > >();

docs/unicode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ LibSass currently reads all kind of BOMs and will error out if it finds somethin
3636
### Low priority feature
3737

3838
I guess the current implementation should handle more than 99% of all real world use cases.
39-
A) Unicode characters are still seldomly seen (as they can be written escaped)
39+
A) Unicode characters are still seldom seen (as they can be written escaped)
4040
~~B) It will still work if it's UTF-8 or in any of the most common known western ISO codepages.
4141
Although I'm not sure how this applies to asian and other "exotic" codepages!~~
4242

include/sass/context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ADDAPI struct Sass_Compiler* ADDCALL sass_make_file_compiler (struct Sass_File_C
4343
ADDAPI struct Sass_Compiler* ADDCALL sass_make_data_compiler (struct Sass_Data_Context* data_ctx);
4444

4545
// Execute the different compilation steps individually
46-
// Usefull if you only want to query the included files
46+
// Useful if you only want to query the included files
4747
ADDAPI int ADDCALL sass_compiler_parse(struct Sass_Compiler* compiler);
4848
ADDAPI int ADDCALL sass_compiler_execute(struct Sass_Compiler* compiler);
4949

0 commit comments

Comments
 (0)