Skip to content

Commit f1b8fee

Browse files
committed
Merge pull request scala#3680 from dcsobral/patch-1
Reword javap filtering options
2 parents aff9ec9 + e8a39e5 commit f1b8fee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

2.11/index.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ scala> :history
179179

180180
### `:javap` ([#1880](https://github.com/scala/scala/pull/1880))
181181

182-
The command to dissasemble Java output got some bugfixes and new features. It is now possible to filter out members of classes:
182+
The command to dissasemble Java output got some bugfixes and new features. It is now possible to selectively display members of classes:
183183

184-
- `Bar#foo` filters out all `foo` members
185-
- `Bar#` filters out all `apply` members
186-
- `-fun Bar#foo` filters out all anonfuns of `foo` members
187-
- `-fun Bar#` filters out all anonfuns of `apply` members
188-
- `-app Bar` filters out `Bar.delayedInit`
184+
- `Bar#foo` displays all `foo` members
185+
- `Bar#` displays all `apply` members
186+
- `-fun Bar#foo` displays all anonfuns of `foo` members
187+
- `-fun Bar#` displays all anonfuns of `apply` members
188+
- `-app Bar` displays `Bar.delayedInit`
189189

190190
Example usage:
191191

0 commit comments

Comments
 (0)