回答編集履歴

1

typo

2023/05/26 14:40

投稿

ujimushi_sradjp
ujimushi_sradjp

スコア2101

test CHANGED
@@ -1,5 +1,5 @@
1
1
  VSCode上でreplで実行させるとデバッグ用に自動でロードされる`VSCodeServer`と
2
- `ProfileView`の`@profile`の名前がかぶっているようですね。
2
+ `ProfileView`の`@profview`の名前がかぶっているようですね。
3
3
 
4
4
  `VSCodeServer`はLinuxだと
5
5
  `~/.vscode/extensions/julialang.language-julia-1.47.2/scripts/packages/VSCodeServer`
@@ -10,9 +10,9 @@
10
10
  ```julia
11
11
  import ProfileView
12
12
 
13
- ProfileView.@profile ...
13
+ ProfileView.@profview ...
14
14
 
15
15
  ```
16
16
  という感じで利用するのはどうでしょうか?
17
- もちろん`using ProfileView`の後でも`ProfileView.@profile`は同様に利用できると思います。
17
+ もちろん`using ProfileView`の後でも`ProfileView.@profview`は同様に利用できると思います。
18
18