docs: fix some spelling (#708)

* spelling: according

Signed-off-by: Josh Soref <[email protected]>

* spelling: asynchronously

Signed-off-by: Josh Soref <[email protected]>

* spelling: background

Signed-off-by: Josh Soref <[email protected]>

* spelling: camel

Signed-off-by: Josh Soref <[email protected]>

* spelling: cannot

Signed-off-by: Josh Soref <[email protected]>

* spelling: case-sensitive

Signed-off-by: Josh Soref <[email protected]>

* spelling: comparison

Signed-off-by: Josh Soref <[email protected]>

* spelling: demos

Signed-off-by: Josh Soref <[email protected]>

* spelling: forloop

Signed-off-by: Josh Soref <[email protected]>

* spelling: formatters

Signed-off-by: Josh Soref <[email protected]>

* spelling: github

Signed-off-by: Josh Soref <[email protected]>

* spelling: guidelines

Signed-off-by: Josh Soref <[email protected]>

* spelling: hashes

Signed-off-by: Josh Soref <[email protected]>

* spelling: https

Signed-off-by: Josh Soref <[email protected]>

* spelling: javascript

Signed-off-by: Josh Soref <[email protected]>

* spelling: keep

Signed-off-by: Josh Soref <[email protected]>

* spelling: natural

Signed-off-by: Josh Soref <[email protected]>

* spelling: neither

Signed-off-by: Josh Soref <[email protected]>

* spelling: no longer

Signed-off-by: Josh Soref <[email protected]>

* spelling: nonexistent

Signed-off-by: Josh Soref <[email protected]>

* spelling: output

Signed-off-by: Josh Soref <[email protected]>

* spelling: polymorphism

Signed-off-by: Josh Soref <[email protected]>

* spelling: precache

Signed-off-by: Josh Soref <[email protected]>

* spelling: programmatically

Signed-off-by: Josh Soref <[email protected]>

* spelling: punctuation

Signed-off-by: Josh Soref <[email protected]>

* spelling: registration

Signed-off-by: Josh Soref <[email protected]>

* spelling: rendered

Signed-off-by: Josh Soref <[email protected]>

* spelling: synchronously

Signed-off-by: Josh Soref <[email protected]>

* spelling: thrown

Signed-off-by: Josh Soref <[email protected]>

* spelling: trimmed

Signed-off-by: Josh Soref <[email protected]>

* spelling: unbalanced

Signed-off-by: Josh Soref <[email protected]>

* chore: use example.com

* chore: fix reference for sidebar.registration

---------

Signed-off-by: Josh Soref <[email protected]>
Co-authored-by: Harttle <[email protected]>
This commit is contained in:
Josh Soref
2024-06-17 17:19:46 +08:00
committed by GitHub
co-authored by Harttle
parent a7da93ff0f
commit a0ea372764
55 changed files with 131 additions and 131 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ export interface LiquidOptions {
extname?: string;
/** Whether or not to cache resolved templates. Defaults to `false`. */
cache?: boolean | number | LiquidCache;
/** Use Javascript Truthiness. Defaults to `false`. */
/** Use JavaScript Truthiness. Defaults to `false`. */
jsTruthy?: boolean;
/** If set, treat the `filepath` parameter in `{%include filepath %}` and `{%layout filepath%}` as a variable, otherwise as a literal value. Defaults to `true`. */
dynamicPartials?: boolean;
@@ -58,7 +58,7 @@ export interface LiquidOptions {
outputDelimiterRight?: string;
/** Whether input strings to date filter preserve the given timezone **/
preserveTimezones?: boolean;
/** Whether `trim*Left`/`trim*Right` is greedy. When set to `true`, all consecutive blank characters including `\n` will be trimed regardless of line breaks. Defaults to `true`. */
/** Whether `trim*Left`/`trim*Right` is greedy. When set to `true`, all consecutive blank characters including `\n` will be trimmed regardless of line breaks. Defaults to `true`. */
greedy?: boolean;
/** `fs` is used to override the default file-system module with a custom implementation. */
fs?: FS;
+2 -2
View File
@@ -69,7 +69,7 @@ describe('Tokenizer', function () {
expect(hash2!.name.content).toBe('foo')
expect(hash2!.value!.getText()).toBe('a[ "bar"]')
})
it('should read multiple hashs', () => {
it('should read multiple hashes', () => {
const hashes = new Tokenizer(', limit: 3 reverse offset:off').readHashes()
expect(hashes).toHaveLength(3)
const [limit, reverse, offset] = hashes
@@ -503,7 +503,7 @@ describe('Tokenizer', function () {
it('should match contains', () => {
expect(new Tokenizer('contains').matchTrie(opTrie)).toBe(8)
})
it('should match comparision', () => {
it('should match comparison', () => {
expect(new Tokenizer('>').matchTrie(opTrie)).toBe(1)
expect(new Tokenizer('>=').matchTrie(opTrie)).toBe(2)
expect(new Tokenizer('<').matchTrie(opTrie)).toBe(1)
+1 -1
View File
@@ -37,7 +37,7 @@ describe('render', function () {
done()
})
})
it('should render to html stream asyncly', function (done) {
it('should render to html stream asynchronously', function (done) {
const scope = new Context()
class CustomTag extends Tag {
render () {
+2 -2
View File
@@ -40,7 +40,7 @@ describe('utils/async', () => {
const result = await toPromise(foo())
expect(result).toBe('foo')
})
it('should reject Promise if dependency throws syncly', done => {
it('should reject Promise if dependency throws synchronously', done => {
function * foo (): Generator<Generator<never>> {
return yield bar()
}
@@ -72,7 +72,7 @@ describe('utils/async', () => {
})
})
describe('#toValueSync()', function () {
it('should throw Error if dependency throws syncly', () => {
it('should throw Error if dependency throws synchronously', () => {
function * foo (): Generator<Generator<never>> {
return yield bar()
}
+1 -1
View File
@@ -3,7 +3,7 @@ import { Token } from '../tokens/token'
import { Template } from '../template/template'
/**
* targeting ES5, extends Error won't create a proper prototype chain, need a trait to kee track of classes
* targeting ES5, extends Error won't create a proper prototype chain, need a trait to keep track of classes
*/
const TRAIT = '__liquidClass__'
+1 -1
View File
@@ -172,7 +172,7 @@ describe('util/strftime', function () {
it('should escape %t as \\t', function () {
expect(t(now, '%t')).toBe('\t')
})
it('should retain un-recognized formaters', function () {
it('should retain un-recognized formatters', function () {
expect(t(now, '%o')).toBe('%o')
})
})