Skip to content

Commit b0d1d77

Browse files
author
Staffan Gustafsson
committed
Fixing tooltips for Size completer
1 parent ae483a0 commit b0d1d77

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

PSEverything/ArgumentCompleter.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ private IEnumerable<CompletionResult> CompleteSearchEverything(string parameterN
4444
"huge",
4545
"gigantic"
4646
});
47-
private string[] SizeConstantToolTips => _sizeConstants ?? (_sizeConstants = new string[]{
47+
private string[] _sizeConstantsToolTips;
48+
private string[] SizeConstantToolTips => _sizeConstantsToolTips ?? (_sizeConstantsToolTips = new string[]{
4849
"empty",
4950
"0 KB < size <= 10 KB",
5051
"10 KB < size <= 100 KB",

0 commit comments

Comments
 (0)