Skip to content

Commit 4e2671a

Browse files
committed
Normalize remaining uppercase user subdirectory path references
1 parent 84798bc commit 4e2671a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/guides/canvas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Canvas view is a realtime, board-style workspace inside the Dashboard. It is
55
## What the Canvas is
66

77
- Infinite board with nodes, connections, ink strokes, and media.
8-
- Boards are stored as YAML items under `user/Canvas_Boards/`.
8+
- Boards are stored as YAML items under `user/canvas_boards/`.
99
- The Dashboard uses `/api/item` and `/api/items?type=canvas_board` to load/save.
1010

1111
## Data model (stored in YAML)

tests/test_registries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def test_wizards_registry(self):
4747
self.assertEqual(reg["wizards"][0]["label"], "Magic Wizard")
4848

4949
def test_themes_registry(self):
50-
# Create a dummy theme in user/Themes
50+
# Create a dummy theme in user/themes
5151
themes_dir = os.path.join(registry_builder.USER_DIR, "Themes")
5252
os.makedirs(themes_dir, exist_ok=True)
5353

utilities/dashboard/wizards/future_self_dialogue/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function renderIntro(container) {
193193
<p class="fsd-sub">You speak as your future actualized self to your past self, then write a letter to your future self and read it through past/present/future lenses. The emotional contrast surfaces gaps, tensions, and missed lessons. Source: <a class="fsd-link" href="${SOURCE_LINK}" target="_blank" rel="noopener">Vaknin Talks</a>.</p>
194194
<div class="fsd-grid two">
195195
<div><strong>Steps</strong><br/>Future → Past dialogue · Letter to Future · Reactions (past/present/future) · Save as journal</div>
196-
<div><strong>Output</strong><br/>Journal entry under <code>user/Journal/</code> with prompts, reactions, tags.</div>
196+
<div><strong>Output</strong><br/>Journal entry under <code>user/journal_entries/</code> with prompts, reactions, tags.</div>
197197
</div>
198198
<button class="fsd-btn" data-start>Begin</button>
199199
</div>
@@ -259,7 +259,7 @@ function renderReview(container) {
259259
container.innerHTML = `
260260
<div class="fsd-card">
261261
<h3>Review & Save</h3>
262-
<p class="fsd-sub">This will write a journal entry under <code>user/Journal/</code> with your dialogue, letter, and reactions. Source: <a class="fsd-link" href="${SOURCE_LINK}" target="_blank" rel="noopener">Vaknin Talks</a>.</p>
262+
<p class="fsd-sub">This will write a journal entry under <code>user/journal_entries/</code> with your dialogue, letter, and reactions. Source: <a class="fsd-link" href="${SOURCE_LINK}" target="_blank" rel="noopener">Vaknin Talks</a>.</p>
263263
<div class="fsd-yaml">${escapeHtml(yaml)}</div>
264264
<button class="fsd-btn" data-copy>Copy to clipboard</button>
265265
</div>

0 commit comments

Comments
 (0)