Skip to content

Commit

Permalink
style: copy change. changed all instances of 'informations' to 'infor…
Browse files Browse the repository at this point in the history
…mation'

fix #582
  • Loading branch information
liamcain committed Mar 18, 2022
1 parent 3c6238e commit 343e3e2
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In order to reproduce your issue, we might need to know a little bit more about
which you're running `Templater` on.
-->

**Plugin informations (please complete the following information):**
**Plugin information (please complete the following information):**

- OS: [e.g. Windows 10]
- Templater version: [e.g. 0.3.4]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ You can create an [issue](https://github.com/SilentVoid13/Templater/issues) to r

You can make a [pull request](https://github.com/SilentVoid13/Templater/pulls) to contribute to this plugin development.

Go [here](https://silentvoid13.github.io/Templater/docs/internal-variables-functions/contribute) to get more informations on how to develop a new internal variable / function.
Go [here](https://silentvoid13.github.io/Templater/docs/internal-variables-functions/contribute) to get more information on how to develop a new internal variable / function.

## License

[Templater](https://github.com/SilentVoid13/Templater) is licensed under the GNU AGPLv3 license. Refer to [LICENSE](https://github.com/SilentVoid13/Templater/blob/master/LICENSE.TXT) for more informations.
[Templater](https://github.com/SilentVoid13/Templater) is licensed under the GNU AGPLv3 license. Refer to [LICENSE](https://github.com/SilentVoid13/Templater/blob/master/LICENSE.TXT) for more information.

## Support

Expand Down
2 changes: 1 addition & 1 deletion docs/documentation.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "config"
description = """This module exposes Templater's running configuration.
This is mostly useful when writing scripts requiring some context informations.
This is mostly useful when writing scripts requiring some context information.
"""

[tp.config.functions.template_file]
Expand Down
4 changes: 2 additions & 2 deletions docs/src/internal-functions/internal-modules/date-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Documentation

Function documentation is using a specific syntax. More informations [here](../../syntax.md#function-documentation-syntax)
Function documentation is using a specific syntax. More information [here](../../syntax.md#function-documentation-syntax)

{%- for key, fn in tp.date.functions %}
### `{{ fn.definition }}`
Expand Down Expand Up @@ -34,7 +34,7 @@ Function documentation is using a specific syntax. More informations [here](../.

Templater gives you access to the `moment` object, with all of its functionalities.

More informations on moment.js [here](https://momentjs.com/docs/#/displaying/)
More information on moment.js [here](https://momentjs.com/docs/#/displaying/)

## Examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Documentation

Function documentation is using a specific syntax. More informations [here](../../syntax.md#function-documentation-syntax)
Function documentation is using a specific syntax. More information [here](../../syntax.md#function-documentation-syntax)


{%- for key, fn in tp.file.functions %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

This is mostly useful when writing scripts.

Refer to the obsidian API [declaration file](https://github.com/obsidianmd/obsidian-api/blob/master/obsidian.d.ts) for more informations.
Refer to the obsidian API [declaration file](https://github.com/obsidianmd/obsidian-api/blob/master/obsidian.d.ts) for more information.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Documentation

Function documentation is using a specific syntax. More informations [here](../../syntax.md#function-documentation-syntax)
Function documentation is using a specific syntax. More information [here](../../syntax.md#function-documentation-syntax)

{%- for key, fn in tp.system.functions %}
### `{{ fn.definition }}`
Expand Down
2 changes: 1 addition & 1 deletion docs/src/internal-functions/internal-modules/web-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Documentation

Function documentation is using a specific syntax. More informations [here](../../syntax.md#function-documentation-syntax)
Function documentation is using a specific syntax. More information [here](../../syntax.md#function-documentation-syntax)

{%- for key, fn in tp.web.functions %}
### `{{ fn.definition }}`
Expand Down
2 changes: 1 addition & 1 deletion docs/src/internal-functions/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ If you understood the [object hierarchy](../syntax.md#objects-hierarchy) correct

## Contribution

I invite everyone to contribute to this plugin development by adding new internal functions. More informations [here](./contribute.md).
I invite everyone to contribute to this plugin development by adding new internal functions. More information [here](./contribute.md).
2 changes: 1 addition & 1 deletion src/settings/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ export class TemplaterSettingTab extends PluginSettingTab {
href: "https://silentvoid13.github.io/Templater/",
text: "documentation",
}),
" for more informations."
" for more information."
);

new Setting(this.containerEl)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function log_error(e: Error | TemplaterError): void {
if (e instanceof TemplaterError && e.console_msg) {
// TODO: Find a better way for this
// @ts-ignore
notice.noticeEl.innerHTML = `<b>Templater Error</b>:<br/>${e.message}<br/>Check console for more informations`;
notice.noticeEl.innerHTML = `<b>Templater Error</b>:<br/>${e.message}<br/>Check console for more information`;
console.error(`Templater Error:`, e.message, "\n", e.console_msg);
} else {
// @ts-ignore
Expand Down

0 comments on commit 343e3e2

Please sign in to comment.