Skip to content

Commit

Permalink
docs: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Feb 12, 2023
1 parent cf01f3a commit 0b90035
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
8 changes: 7 additions & 1 deletion .eslintrc-auto-import.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"globals": {
"Component": true,
"ComponentPublicInstance": true,
"ComputedRef": true,
"EffectScope": true,
"InjectionKey": true,
"PropType": true,
"Ref": true,
"VNode": true,
"computed": true,
"createApp": true,
"customRef": true,
Expand Down Expand Up @@ -40,7 +47,6 @@
"readonly": true,
"ref": true,
"resolveComponent": true,
"resolveDirective": true,
"settingModule": true,
"shallowReactive": true,
"shallowReadonly": true,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ See the <a href='https://github.com/mrjackwills/obliqoro/releases/latest' target
+ [ ] Frontend link to the location of the SQLite file on disk
+ [ ] Testing on Mac
+ [ ] Password for exiting a long break?
+ [ ] Removal of OpenSSL Rust dependency
+ [ ] Setting to enable writing logs to file when on production version
+ [x] ~~~Removal of OpenSSL Rust dependency~~~
### Development
Expand Down
6 changes: 3 additions & 3 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/src/request_handlers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn auto_launch() -> Option<AutoLaunch> {
})
}

/// Initialise the frontent store & settings
/// Initialise the fontend store & settings
#[tauri::command]
#[allow(clippy::needless_pass_by_value)]
pub fn init(state: TauriState<'_>) {
Expand Down
6 changes: 5 additions & 1 deletion src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ declare global {
const readonly: typeof import('vue')['readonly']
const ref: typeof import('vue')['ref']
const resolveComponent: typeof import('vue')['resolveComponent']
const resolveDirective: typeof import('vue')['resolveDirective']
const settingModule: typeof import('./store/index')['settingModule']
const shallowReactive: typeof import('vue')['shallowReactive']
const shallowReadonly: typeof import('vue')['shallowReadonly']
Expand All @@ -64,3 +63,8 @@ declare global {
const watchPostEffect: typeof import('vue')['watchPostEffect']
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
}
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
}

0 comments on commit 0b90035

Please sign in to comment.