Skip to content

Commit d6eaed5

Browse files
Fix to command label
1 parent 58d941f commit d6eaed5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ VSCode debuggers.
3838

3939
![A screenshot of the dependency visualization (on ShellAdventure)](screenshots/dependency.png)
4040

41-
The command "Visualize the dependencies between python files" brings up the Dependency Visualization. This
41+
The command "Visualize the dependencies between Python files" brings up the Dependency Visualization. This
4242
visualization displays dependencies between files in Python codebases. It displays a directed arrow for any `import`s in
4343
python files. It only show connections to/from a file on hover over that file by default. The visualization uses the
4444
handy [pydeps](https://github.com/thebjorn/pydeps) package to extract the dependencies from the source files.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codebase-relationship-visualizer",
33
"displayName": "CodeBase Relationship Visualizer",
44
"description": "Visualize relationships between files and the codebase file system structure.",
5-
"version": "1.1.0",
5+
"version": "1.1.1",
66
"publisher": "jesse-r-s-hines",
77
"repository": "https://github.com/jesse-r-s-hines/CodeBaseRelationshipVisualizer",
88
"private": false,
@@ -40,7 +40,7 @@
4040
},
4141
{
4242
"command": "pythonDependencyVisualization.start",
43-
"title": "Visualize the dependencies between python files",
43+
"title": "Visualize the dependencies between Python files",
4444
"category": "CodeBase Relationship Visualizer"
4545
}
4646
]

test/acceptance-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ manually, though the unit tests will create it automically when run as well.
229229

230230
## Dependency Visualization
231231
- Open the `python` codebase in VSCode
232-
- Run the "Visualize the dependencies between python files" command
232+
- Run the "Visualize the dependencies between Python files" command
233233
- If this is your first time running the command, it should show an "Installing pydeps..." progress notification
234234
- Wait for any progress notifications to complete
235235
- Hover over `a.py`
@@ -246,5 +246,5 @@ manually, though the unit tests will create it automically when run as well.
246246
- Should just show an empty circle
247247
- Run the "Visualize the stack trace during a debugger session" command
248248
- Should just show an empty circle
249-
- Run the "Visualize the dependencies between python files" command
249+
- Run the "Visualize the dependencies between Python files" command
250250
- Should just show an empty circle

0 commit comments

Comments
 (0)