mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
chore(core): fix typos (#761)
Signed-off-by: Viktor Szépe <viktor@szepe.net>
This commit is contained in:
+5
-5
@@ -2125,12 +2125,12 @@ Signed-off-by: phernandez <paul@basicmachines.co>
|
||||
- Update CLAUDE.md ([#33](https://github.com/basicmachines-co/basic-memory/pull/33),
|
||||
[`dfaf0fe`](https://github.com/basicmachines-co/basic-memory/commit/dfaf0fea9cf5b97d169d51a6276ec70162c21a7e))
|
||||
|
||||
fix spelling in CLAUDE.md: enviroment -> environment Signed-off-by: Ikko Eltociear Ashimine
|
||||
fix spelling in CLAUDE.md: environment typo Signed-off-by: Ikko Eltociear Ashimine
|
||||
<eltociear@gmail.com>
|
||||
|
||||
### Refactoring
|
||||
|
||||
- Move project stats into projct subcommand
|
||||
- Move project stats into project subcommand
|
||||
([`2a881b1`](https://github.com/basicmachines-co/basic-memory/commit/2a881b1425c73947f037fbe7ac5539c015b62526))
|
||||
|
||||
Signed-off-by: phernandez <paul@basicmachines.co>
|
||||
@@ -2559,7 +2559,7 @@ Co-authored-by: phernandez <phernandez@basicmachines.co>
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Refix vitual env in installer build
|
||||
- Refix virtual env in installer build
|
||||
([`052f491`](https://github.com/basicmachines-co/basic-memory/commit/052f491fff629e8ead629c9259f8cb46c608d584))
|
||||
|
||||
|
||||
@@ -2578,7 +2578,7 @@ Co-authored-by: phernandez <phernandez@basicmachines.co>
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Fix path to intaller app artifact
|
||||
- Fix path to installer app artifact
|
||||
([`53d220d`](https://github.com/basicmachines-co/basic-memory/commit/53d220df585561f9edd0d49a9e88f1d4055059cf))
|
||||
|
||||
|
||||
@@ -2586,7 +2586,7 @@ Co-authored-by: phernandez <phernandez@basicmachines.co>
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Activate vitualenv in installer build
|
||||
- Activate virtualenv in installer build
|
||||
([`d4c8293`](https://github.com/basicmachines-co/basic-memory/commit/d4c8293687a52eaf3337fe02e2f7b80e4cc9a1bb))
|
||||
|
||||
- Trigger installer build on release
|
||||
|
||||
@@ -516,7 +516,7 @@ canvas(nodes, edges, title, folder) - Generate knowledge visualizations
|
||||
"What have I been working on in the past week?"
|
||||
```
|
||||
|
||||
## Futher info
|
||||
## Further info
|
||||
|
||||
See the [Documentation](https://docs.basicmemory.com?utm_source=github&utm_medium=referral&utm_campaign=readme) for more info, including:
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ from typing import TYPE_CHECKING, Dict, List, Set
|
||||
|
||||
from pydantic import BaseModel, Field
|
||||
|
||||
# avoid cirular imports
|
||||
# avoid circular imports
|
||||
if TYPE_CHECKING: # pragma: no cover
|
||||
from basic_memory.sync.sync_service import SyncReport
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ def test_format_timestamp():
|
||||
formatted = format_timestamp(unix_str)
|
||||
assert "2023" in formatted
|
||||
|
||||
# Test with unparseable string
|
||||
# Test with unparsable string
|
||||
assert format_timestamp("not a timestamp") == "not a timestamp"
|
||||
|
||||
# Test with non-timestamp object
|
||||
|
||||
@@ -200,7 +200,7 @@ def test_parse_date_formats(entity_parser):
|
||||
# Invalid formats
|
||||
assert entity_parser.parse_date(None) is None
|
||||
assert entity_parser.parse_date(123) is None # Non-string/datetime
|
||||
assert entity_parser.parse_date("not a date") is None # Unparseable string
|
||||
assert entity_parser.parse_date("not a date") is None # Unparsable string
|
||||
assert entity_parser.parse_date("") is None # Empty string
|
||||
|
||||
# Test dateparser error handling
|
||||
|
||||
@@ -109,7 +109,7 @@ export function getRowIdentifier(
|
||||
* Note: Single "B" is disambiguated - integers < 1024 are bytes, otherwise billions.
|
||||
*
|
||||
* @param input - String to parse
|
||||
* @returns Parsed number or null if unparseable
|
||||
* @returns Parsed number or null if unparsable
|
||||
*
|
||||
* @example
|
||||
* parseNumericLike("$1,234.56") // 1234.56
|
||||
|
||||
Reference in New Issue
Block a user